DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 175e066f452a659a3d926c5c9fcb3e975d3e68e1 nix-arta/roles/gaming/steam.nix -rw-r--r-- 378 bytes
175e066fJonni Liljamo chore: update inputs and make changes accordingly a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  config,
  lib,
  ...
}: let
  cfg = config.roles.gaming;
in {
  config = lib.mkIf cfg.steam.enable {
    arta.unfree.allow = [
      "steam-run"
      "steam-original"
      "steam"
    ];

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