feat: move stuff to even more separate modules.
This commit is contained in:
parent
585f9dd0d7
commit
448e82464a
6 changed files with 95 additions and 46 deletions
22
modules/home-manager/gaming.nix
Normal file
22
modules/home-manager/gaming.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
crony.gaming.enable = lib.mkEnableOption "Install gaming related packages";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.crony.gaming.enable {
|
||||
home.packages = with pkgs; [
|
||||
heroic
|
||||
prismlauncher
|
||||
protonup-qt
|
||||
protontricks
|
||||
itch
|
||||
wineWowPackages.staging
|
||||
osu-lazer-bin
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue