nixos-config/modules/steam.nix

10 lines
186 B
Nix
Raw Normal View History

2022-03-23 15:30:30 +00:00
{lib, ...}: {
2022-03-21 16:47:04 +00:00
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-runtime"
];
programs.steam.enable = true;
}