nix-conf/modules/linux/home-manager/gaming.nix
Crony Akatsuki 7c189ac090
All checks were successful
/ cache (push) Successful in 1m4s
feat: add some more games.
2026-05-19 09:54:57 +02:00

28 lines
511 B
Nix

{
config,
inputs,
pkgs,
lib,
...
}: {
options = {
crony.gaming.enable = lib.mkEnableOption "Install gaming related packages";
};
config = lib.mkIf config.crony.gaming.enable {
home.packages = with pkgs; [
heroic
prismlauncher
protonup-qt
itch
inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}.osu-stable
xonotic
supertuxkart
faugus-launcher
nzportable
protonup-qt
wine-staging
sm64coopdx
];
};
}