nix-system/gaming.nix
2024-12-03 21:44:32 +01: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 [];
}