mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-06-14 15:33:12 +00:00
18 lines
315 B
Nix
18 lines
315 B
Nix
{ ... }:
|
|
{
|
|
services.sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
#security.wrappers.sunshine = {
|
|
# owner = "root";
|
|
# group = "root";
|
|
# capabilities = "cap_sys_admin+p";
|
|
# source = "${pkgs.sunshine}/bin/sunshine";
|
|
# };
|
|
}
|
|
|