modularize browsers
This commit is contained in:
parent
f5cfd50183
commit
50943bb142
19
home/modules/browsers.nix
Normal file
19
home/modules/browsers.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.apps.browsers;
|
||||
in {
|
||||
options.local.apps.browsers = {
|
||||
enable = mkEnableOption "Browser home settings";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
firefox
|
||||
];
|
||||
};
|
||||
}
|
|
@ -10,5 +10,6 @@
|
|||
./baseline.nix
|
||||
./steam
|
||||
./yubikey.nix
|
||||
./browsers.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -9,11 +9,9 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
calibre
|
||||
chromium
|
||||
darktable
|
||||
deluge
|
||||
discord
|
||||
firefox
|
||||
gcc
|
||||
gwenview
|
||||
kdenlive
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
neovim.enable = true;
|
||||
steam.enable = true;
|
||||
yubikey.enable = true;
|
||||
browsers.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue