12 lines
214 B
Nix
Executable file
12 lines
214 B
Nix
Executable file
{ config, ... }:
|
|
{
|
|
services.sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
settings = {
|
|
sunshine_name = config.networking.hostName;
|
|
};
|
|
};
|
|
}
|