nix-system/home/gaming.nix
2025-05-21 23:08:53 +02:00

13 lines
235 B
Nix

{ lib, config, pkgs, variant, ... }: {
nixpkgs.config = { allowUnfree = true; };
home.packages = if variant == "default" then with pkgs; [
lutris
prismlauncher
gamemode
mangohud
heroic
steam
]
else [];
}