added yazi and prismlauncher
This commit is contained in:
parent
a3fb637abb
commit
2d19fa4c13
2 changed files with 15 additions and 0 deletions
14
modules/prismLauncher.nix
Normal file
14
modules/prismLauncher.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue