DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 29e9eb405659df39514d49854c519c80942c7b22 nix-arta/modules/nixos/steam.nix -rw-r--r-- 490 bytes
29e9eb40Jonni Liljamo flake: update 15 days ago
                                                                                
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
{config, ...}: {
  flake.modules.nixos.steam = {...}: {
    imports = with config.flake.modules.nixos; [
      unfree
      gaming
    ];

    arta.unfree.allow = [
      "steam"
      "steam-unwrapped"
    ];

    programs.steam = {
      enable = true;
      # TODO: verify if needed anymore
      /*
        extraPackages = with pkgs; [
        # Fallback fonts (e.g. for Don't Get Lost).
        liberation_ttf
      ];
      */
    };
    hardware.steam-hardware.enable = true;
  };
}