1
0
Fork 0
forked from fabian/nix_config
nix_config_fabian/home/modules/gaming.nix

21 lines
297 B
Nix
Raw Normal View History

{
pkgs,
lib,
config,
...
}:
with lib; let
cfg = config.local.apps.gaming;
in {
options.local.apps.gaming = {
enable = mkEnableOption "gaming apps";
};
config = mkIf cfg.enable {
home.packages = [
2024-11-29 09:00:13 +01:00
pkgs.lutris
pkgs.openrct2
pkgs.prismlauncher
];
};
}