12 lines
198 B
Nix
12 lines
198 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
sunshine
|
|
];
|
|
services.sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|