nixos-config/modules/nixos/games/default.nix
Charlotte Van Petegem d4dba203e3
All checks were successful
Cachix / build (elendel) (push) Successful in 1m30s
Cachix / build (kholinar) (push) Successful in 2m11s
Cachix / build (marabethia) (push) Successful in 1m34s
treewide: cleanup some unused modules/programs
2025-01-13 09:45:43 +01:00

22 lines
361 B
Nix

{ config, lib, ... }:
{
imports = [
./minecraft
./particles
./steam
./tetris
];
options.chvp.games.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.games.enable {
chvp.games = {
minecraft.client = lib.mkDefault false;
steam.enable = lib.mkDefault true;
};
};
}