26 lines
594 B
Nix
Executable File
26 lines
594 B
Nix
Executable File
{ lib, config, pkgs, ... }:
|
|
let
|
|
isEnabled =
|
|
config.azos.reaper.enable;
|
|
in {
|
|
options.azos.reaper.enable = lib.mkOption {
|
|
default = true;
|
|
example = true;
|
|
type = lib.types.bool;
|
|
};
|
|
|
|
config = lib.mkIf isEnabled {
|
|
home.packages = with pkgs; [
|
|
reaper
|
|
# helm #TODO this synth had better work
|
|
#TODO collision, would like to make this work.
|
|
#TODO we can overlay by simply removing the direct bin
|
|
#TODO which we don't need
|
|
#TODO but not urgent now
|
|
surge
|
|
lsp-plugins
|
|
vital
|
|
];
|
|
};
|
|
}
|