nixos-config/modules/nixos/games/default.nix
Charlotte Van Petegem 9c93e87620
All checks were successful
Cachix / build (elendel) (push) Successful in 7m6s
Cachix / build (kholinar) (push) Successful in 15m21s
Cachix / build (marabethia) (push) Successful in 5m43s
Install 0ad
2025-05-14 16:08:42 +02:00

23 lines
417 B
Nix

{ config, lib, pkgs, ... }:
{
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;
};
environment.systemPackages = [ pkgs.zeroad ];
};
}