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
|
./baseline.nix
|
||||||
./steam
|
./steam
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
|
./browsers.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,11 +9,9 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
calibre
|
calibre
|
||||||
chromium
|
|
||||||
darktable
|
darktable
|
||||||
deluge
|
deluge
|
||||||
discord
|
discord
|
||||||
firefox
|
|
||||||
gcc
|
gcc
|
||||||
gwenview
|
gwenview
|
||||||
kdenlive
|
kdenlive
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
yubikey.enable = true;
|
yubikey.enable = true;
|
||||||
|
browsers.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue