diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-01-14 20:15:16 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-01-14 20:15:16 -0500 |
| commit | 377cae78d5e9e5e2fe9f6127180a6d1dacb72e63 (patch) | |
| tree | 55925c7ddee0f8d884f256f07e60497ca4cef88d /common | |
| parent | 44c11be5831b178777bae2794848e0365d813471 (diff) | |
steam
Diffstat (limited to 'common')
| -rw-r--r-- | common/steam.nix | 11 |
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; +} |
