hosts
This commit is contained in:
parent
95ea2899ea
commit
9e441e1aaf
11 changed files with 172 additions and 1 deletions
14
system/steam.nix
Normal file
14
system/steam.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options.gaming.enable = lib.mkEnableOption "Enable gaming";
|
||||
|
||||
config = lib.mkIf config.gaming.enable {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue