aboutsummaryrefslogtreecommitdiff
path: root/common/steam.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-01-18 13:40:51 -0500
committerRosa <rosaontheweb@proton.me>2026-01-18 13:40:51 -0500
commit4d1c27fae2f9abb1c5df198b3e771f6a51dacd99 (patch)
treed6616d2bc7b06229f248703bf7e785e17d84059b /common/steam.nix
parenteb6f37f9364212d8893b1f879872b98b2ef503a8 (diff)
parent377cae78d5e9e5e2fe9f6127180a6d1dacb72e63 (diff)
i fucked up
Diffstat (limited to 'common/steam.nix')
-rw-r--r--common/steam.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/steam.nix b/common/steam.nix
new file mode 100644
index 0000000..05d2ca6
--- /dev/null
+++ b/common/steam.nix
@@ -0,0 +1,11 @@
+{ config, lib, ... }:
+{
+ nixpkgs.config.allowUnfreePredicate =
+ pkg:
+ builtins.elem (lib.getName pkg) [
+ "steam"
+ "steam-unwrapped"
+ ];
+
+ programs.steam.enable = true;
+}