added yazi and prismlauncher

This commit is contained in:
Fishandchips321 2026-02-28 17:23:14 +00:00
parent a3fb637abb
commit 2d19fa4c13
2 changed files with 15 additions and 0 deletions

14
modules/prismLauncher.nix Normal file
View file

@ -0,0 +1,14 @@
{config, pkgs, lib, ...}:
let
cfg = config.modules.prismLauncher;
in
{
options.modules.prismLauncher.enable = lib.mkEnableOption "Enables the prism minecraft launcher";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
prismlauncher
];
};
}