Files
nix-config/homeConfigs/modules/game.nix
tomoron fb2b3f80ad
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 1m59s
home : fix file manager config, add r2modman
2025-09-24 23:50:45 +02:00

21 lines
371 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
mangohud
moonlight-qt
prismlauncher
r2modman
];
};
}