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

15 lines
224 B
Nix
Raw Permalink Normal View History

2024-07-04 17:28:22 +00:00
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.games.prismlauncher;
in {
config = mkIf cfg.enable {
2024-07-26 23:07:07 +00:00
home.packages = with pkgs; [prismlauncher];
2024-07-04 17:28:22 +00:00
};
}