nixdots/home/programs/graphical/games/lutris.nix

20 lines
277 B
Nix
Raw Normal View History

2024-08-26 14:56:31 +00:00
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.games.lutris;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
lutris.override
{
extraPkgs = pkgs: [];
}
];
};
}