From bda00544621aa10048f92de615b2df4feebe7706 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sun, 8 Mar 2026 17:55:16 +0100 Subject: [PATCH] feat(services/self_host): adding the vault declaration --- services/self_host.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/services/self_host.nix b/services/self_host.nix index 9a146e3..92ecb5d 100644 --- a/services/self_host.nix +++ b/services/self_host.nix @@ -71,6 +71,14 @@ let lib ; }; + vault = import ./self_host/vault.nix { + inherit + inputs + config + pkgs + lib + ; + }; cfg = config.service.selfhost; in { @@ -83,6 +91,7 @@ in nextcloud ollama sso + vault ]; config = { @@ -129,7 +138,12 @@ in sso = lib.mkOption { type = lib.types.bool; default = false; - description = "Enable the nextcloud"; + description = "Enable the sso"; + }; + vault = lib.mkOption { + type = lib.types.bool; + default = false; + description = "Enable the vault"; }; }; }