23 lines
365 B
Nix
23 lines
365 B
Nix
|
{
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
}
|