diff --git a/hosts/tsuki/services/default.nix b/hosts/tsuki/services/default.nix index e7e280b..da67dbe 100644 --- a/hosts/tsuki/services/default.nix +++ b/hosts/tsuki/services/default.nix @@ -3,5 +3,6 @@ ./restic.nix ./atticd.nix ./hydroxide.nix + ./sunshine.nix ]; } diff --git a/hosts/tsuki/services/sunshine.nix b/hosts/tsuki/services/sunshine.nix new file mode 100644 index 0000000..55e41bb --- /dev/null +++ b/hosts/tsuki/services/sunshine.nix @@ -0,0 +1,8 @@ +_: { + services.sunshine = { + enable = true; + autoStart = false; + openFirewall = true; + capSysAdmin = true; + }; +}