18 lines
272 B
Nix
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;
|
|
};
|
|
|
|
}
|