mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
prepare to add sops module
This commit is contained in:
parent
a825ca488b
commit
1feedce1a9
4 changed files with 27 additions and 4 deletions
|
|
@ -7,6 +7,18 @@ let
|
|||
in
|
||||
{ options.modules.user.gui.browser.firefox = { enable = mkEnableOption "Enable Firefox browser"; };
|
||||
config = mkIf cfg.enable {
|
||||
programs.firefox.enable = true;
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
nativeMessagingHosts = with pkgs; [
|
||||
passff-host
|
||||
];
|
||||
profiles = {
|
||||
"${config.user.name}" = {
|
||||
bookmarks = [
|
||||
(import ../../../../../configs/bookmarks)
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue