Add steam on all machines

This commit is contained in:
fleaz 2022-03-21 17:47:04 +01:00
parent a0672fba27
commit a8797c4cf6
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 10 additions and 0 deletions

9
modules/steam.nix Normal file
View file

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