24 lines
389 B
Nix
24 lines
389 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
|
|
steam-rom-manager
|
|
];
|
|
};
|
|
}
|