mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
11 lines
209 B
Nix
11 lines
209 B
Nix
{ ... }: {
|
|
flake.nixosModules.gaming-sys-sunshine = { pkgs, ... }: {
|
|
services.sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
};
|
|
}
|