22 lines
377 B
Nix
22 lines
377 B
Nix
{...}: {
|
|
config.flake.modules.homeManager.reaper = {
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
options.azos.reaper.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
config = lib.mkIf config.azos.reaper.enable {
|
|
home.packages = with pkgs; [
|
|
reaper
|
|
helm
|
|
lsp-plugins
|
|
vital
|
|
];
|
|
};
|
|
};
|
|
}
|