fixed sunshine not installed

This commit is contained in:
kenji
2025-07-22 20:08:29 -05:00
parent 10e9e6e426
commit 9a24848f21
+11
View File
@@ -0,0 +1,11 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
sunshine
];
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
}