19 lines
369 B
Nix
19 lines
369 B
Nix
{...}: {
|
|
services.sunshine = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
capSysAdmin = true;
|
|
applications = {
|
|
apps = [
|
|
{
|
|
name = "Steam Big Picture";
|
|
icon = "steam";
|
|
cmd = "steam steam://open/gamepadui";
|
|
exclude-global-prep-cmd = "false";
|
|
auto-detach = "true";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|