12 lines
177 B
Nix
12 lines
177 B
Nix
{ ..., pkgs }:
|
|
|
|
{
|
|
services.sunshine = {
|
|
enable = true;
|
|
package = pkgs.unstable.sunshine;
|
|
autostart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|