aboutsummaryrefslogtreecommitdiff
path: root/modules/services/sunshine.nix
blob: 69496f278cd96b51d6ebd55dafd9a9467021b8f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  flake.modules.nixos.sunshine =
    { ... }:
    {
      services.sunshine = {
        enable = true;
        autoStart = true;
        capSysAdmin = true;
        openFirewall = true;
      };
      hardware.graphics.enable = true;
    };
}