nixos-config/modules/steam.nix
2022-03-21 17:51:01 +01:00

10 lines
174 B
Nix

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