Files
dotfiles/nixos/ryu/services/sunshine.nix
2025-02-02 21:57:43 +05:30

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";
}
];
};
};
}