Files
nixos-haus/modules/userapps/gaming.nix
2025-11-22 10:49:22 +02:00

16 lines
239 B
Nix

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