aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/gaming.nix
blob: 1065de79a208a9ebcba2c62a8ccc2bbd9c339218 (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
28
29
30
31
32
{ config, lib, pkgs, ... }:

with lib;
let

  cnf = config.cynerd.gaming;

in {

  options = {
    cynerd.gaming = mkOption {
      type = types.bool;
      default = false;
      description = "Enable gaming";
    };
  };

  config = mkIf cnf {
    cynerd.desktop.enable = true;

    environment.systemPackages = with pkgs; [
      minigalaxy
    ];

    programs.steam = {
      enable = true;
      remotePlay.openFirewall = true;
      dedicatedServer.openFirewall = true;
    };

  };
}