modularise lenovo?

This commit is contained in:
andromeda
2026-01-09 23:23:07 +01:00
parent 8b79f4e825
commit 0658c5d898
13 changed files with 116 additions and 367 deletions

10
modules/nixos/steam.nix Normal file
View File

@@ -0,0 +1,10 @@
{lib, ...}: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
programs.steam.enable = true;
}