feat: better modules aragement.
This commit is contained in:
parent
de11ee0676
commit
6e967a751f
49 changed files with 27 additions and 19 deletions
23
modules/linux/home-manager/gaming.nix
Normal file
23
modules/linux/home-manager/gaming.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
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
|
||||
steam-rom-manager
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue