Files
nix-config/homeConfigs/modules/game.nix
tomoron 91702ec7a3
All checks were successful
update the nix flake lock automatically every week / update (push) Successful in 24s
set flake to master, changes in Makefile, vim and home
2026-05-12 15:10:58 +02:00

21 lines
381 B
Nix

{ config, lib, pkgs, ... }:
{
options.mods.game.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "install packages for games (except steam , it's installed systemwide)";
};
config = lib.mkIf config.mods.game.enable {
home.packages = with pkgs;[
# lutris (broken)
mangohud
moonlight-qt
prismlauncher
r2modman
];
};
}