12 lines
210 B
Nix
12 lines
210 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.sunshine = {
|
|
enable = true;
|
|
package = pkgs.unstable.sunshine.override { cudaSupport = true; };
|
|
autoStart = true;
|
|
capSysAdmin = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|