about summary refs log tree commit diff stats
path: root/system/services/steam
diff options
context:
space:
mode:
Diffstat (limited to 'system/services/steam')
-rw-r--r--system/services/steam/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/system/services/steam/default.nix b/system/services/steam/default.nix
index 916b3b15..aebd9c34 100644
--- a/system/services/steam/default.nix
+++ b/system/services/steam/default.nix
@@ -3,10 +3,11 @@
   programs.steam = {
     enable = true;
   };
-  nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
-    "steam"
-    "steam-original"
-    "steam-runtime"
-    "steam-run"
-  ];
+  nixpkgs.config.allowUnfreePredicate = pkg:
+    builtins.elem (lib.getName pkg) [
+      "steam"
+      "steam-original"
+      "steam-runtime"
+      "steam-run"
+    ];
 }