nixos-config/modules/nixos/submodules/games/default.nix
2024-04-04 19:37:06 +02:00

28 lines
446 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib;
with lib.wyrdgard;
let
cfg = config.wyrdgard.submodules.games;
in
{
options.wyrdgard.submodules.games = with types; {
enable = mkBoolOpt false "Whether or not you want to enable steam and other games";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ prismlauncher ];
wyrdgard = {
apps = {
steam = enabled;
};
};
};
}