diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-23 08:50:57 +0200 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-23 08:50:57 +0200 |
commit | d9511a642b80c16db6508bc1f4b51f229c257b3a (patch) | |
tree | a9cdf25f7e0f74abc484cb45fce25ea86bf0853a /gaming.nix |
Initial commit
Diffstat (limited to 'gaming.nix')
-rw-r--r-- | gaming.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gaming.nix b/gaming.nix new file mode 100644 index 0000000..768af12 --- /dev/null +++ b/gaming.nix @@ -0,0 +1,28 @@ +{ config, pkgs, ... }: + +{ + programs.steam.enable = true; + + services.sunshine = { + enable = true; + autoStart = true; + capSysAdmin = true; + openFirewall = true; + settings = { + output_name = 1; + }; + applications = { + apps = [ + { + name = "Auto Desktop"; + prep-cmd = [ + { + do = ""; + undo = ""; + } + ]; + } + ]; + }; + }; +} |