about summary refs log tree commit diff stats
path: root/system/services/steam
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-04-07 11:12:27 +0200
committerene <ene@sils.li>2023-04-07 13:16:45 +0200
commit4e67d74766bec20129d9f9ae8e9c0174fb272194 (patch)
tree708b5bca5d4cbdb6c8d5ddc27abaa7b1851e3663 /system/services/steam
parentFix(hm/pkgs/scripts/update): Allow for rebases (diff)
downloadnixos-config-4e67d74766bec20129d9f9ae8e9c0174fb272194.tar.gz
nixos-config-4e67d74766bec20129d9f9ae8e9c0174fb272194.zip
Feat(hm/pkgs): Add lutris
Lutris requires Steam as a dependency, thus allowing steam is required.
There seems to be no other way to do this, I'm afraid.
Diffstat (limited to 'system/services/steam')
-rw-r--r--system/services/steam/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/system/services/steam/default.nix b/system/services/steam/default.nix
new file mode 100644
index 00000000..916b3b15
--- /dev/null
+++ b/system/services/steam/default.nix
@@ -0,0 +1,12 @@
+# vim: ts=2
+{lib, ...}: {
+  programs.steam = {
+    enable = true;
+  };
+  nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
+    "steam"
+    "steam-original"
+    "steam-runtime"
+    "steam-run"
+  ];
+}