All checks were successful
Build iso when a new version is pushed / test (push) Successful in 1m59s
21 lines
371 B
Nix
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
|
|
];
|
|
};
|
|
}
|