nixdots/home/programs/graphical/games/prismlauncher.nix
2024-07-04 19:33:53 +02:00

15 lines
226 B
Nix

{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.games.prismlauncher;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [ prismlauncher ];
};
}