nixos-config/modules/nixos/games/default.nix
Charlotte Van Petegem 001585002f
All checks were successful
Cachix / build (elendel) (push) Successful in 2m39s
Cachix / build (marabethia) (push) Successful in 4m18s
Cachix / build (kholinar) (push) Successful in 5m1s
Revert "Install 0ad"
This reverts commit 9c93e87620.
2025-05-15 13:16:21 +02: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;
};
};
}