about summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-10 13:01:08 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:11 +0200
commit832b796d1e8730aa0ce16c23a4d6f0b6755a59df (patch)
tree0750ca228b003b1f39f46855c2d9d2b8d88d45d9 /system/services
parentFix(system/services/nix): Use correct values (diff)
downloadnixos-config-832b796d1e8730aa0ce16c23a4d6f0b6755a59df.zip
Fix(system/nixpkgs): Configure at a system level
Diffstat (limited to 'system/services')
-rw-r--r--system/services/default.nix2
-rw-r--r--system/services/steam/default.nix5
2 files changed, 1 insertions, 6 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 92150ea3..63f0e733 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -3,7 +3,7 @@
     ./printing
     ./nix
     ./snapper
-    #./steam
+    ./steam
     ./dconf
     ./openssh
   ];
diff --git a/system/services/steam/default.nix b/system/services/steam/default.nix
index d2cc62a7..2efa54e2 100644
--- a/system/services/steam/default.nix
+++ b/system/services/steam/default.nix
@@ -3,9 +3,4 @@
   programs.steam = {
     enable = true;
   };
-  nixpkgs.config.allowUnfreePredicate = pkg:
-    builtins.elem (lib.getName pkg) [
-      "steam"
-      "steam-original"
-    ];
 }