diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-17 12:47:26 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-17 23:25:09 -0500 |
| commit | 04f6f2759e316537e4b8424824b197768e472ff5 (patch) | |
| tree | 7a237c5f3928e019e7977cf069b20b46e4194d5a /system/gaming | |
| parent | ly: add animations, and fix save file in 1.3 (diff) | |
| download | dotfiles-nix-04f6f2759e316537e4b8424824b197768e472ff5.tar.gz dotfiles-nix-04f6f2759e316537e4b8424824b197768e472ff5.tar.bz2 dotfiles-nix-04f6f2759e316537e4b8424824b197768e472ff5.zip | |
make unfree explicit and add more fonts
Diffstat (limited to '')
| -rw-r--r-- | system/gaming/steam.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/system/gaming/steam.nix b/system/gaming/steam.nix index ada0aaf..2364291 100644 --- a/system/gaming/steam.nix +++ b/system/gaming/steam.nix @@ -7,12 +7,12 @@ cfg = config.gaming.steam; in { config = mkIf cfg.enable { - nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "steam" - "steam-original" - "steam-runtime" - ]; + unfreePackages = [ + "steam" + "steam-original" + "steam-runtime" + "steam-unwrapped" + ]; programs.gamescope = { enable = true; @@ -28,7 +28,6 @@ in { }; # controllers - hardware.xone.enable = true; hardware.steam-hardware.enable = true; # cod |