Primarily reaper

This commit is contained in:
2025-04-25 23:52:18 +03:00
parent 3bf91063d3
commit 5b30dc0124
10 changed files with 86 additions and 42 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
{
imports = [./mail.nix ./encryption.nix ./kubernetes.nix ./git.nix ./mpris-proxy.nix ./qutebrowser-config.nix ./audio.nix];
imports = [
./mail.nix
./encryption.nix
./kubernetes.nix
./git.nix
./mpris-proxy.nix
./qutebrowser-config.nix
./audio.nix
./reaper.nix
];
}
+1 -1
View File
@@ -12,7 +12,7 @@ in {
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
kubectl
kubernetes-helm
# kubernetes-helm
velero
];
};
+21
View File
@@ -0,0 +1,21 @@
{ 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
surge
lsp-plugins
vital
];
};
}