summaryrefslogtreecommitdiff
path: root/gaming.nix
blob: 785d6c341f8f7b381462f8e51ac85d80c290f49d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config, pkgs, ... }:

{
  programs.steam.enable = true;

  services.sunshine = {
    enable = true;
    autoStart = true;
    openFirewall = true;
    settings = {
      output_name = 1;
    };
    applications = {
      apps = [
        {
          name = "Auto Desktop";
          prep-cmd = [
            {
              do = "";
              undo = "";
            }
          ];
        }
      ];
    };
  };
}