Files
ndots/modules/nixos/steam/default.nix
T
2026-07-12 15:25:55 -03:00

18 lines
272 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options.custom = {
steam.enable = lib.mkEnableOption "enable steam - game library and store";
};
config = lib.mkIf config.custom.steam.enable {
programs.steam.enable = true;
programs.gamemode.enable = true;
};
}