From cbff35ce5859ddb5a413cba1b789c93c1325a0d9 Mon Sep 17 00:00:00 2001 From: blake Date: Tue, 7 Oct 2025 21:15:55 -0500 Subject: [PATCH] 52 current 2025-10-07 21:09:55 25.05.20251001.5b5be50 6.12.49 * --- flake.nix | 2 +- hosts/snowbelle/configuration.nix | 1 + modules/homelab/services/default.nix | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8fa1fec..7b6d41f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 51 current 2025-10-07 20:54:44 25.05.20251001.5b5be50 6.12.49 * +# generation: 52 current 2025-10-07 21:09:55 25.05.20251001.5b5be50 6.12.49 * { description = "blakes nix config"; inputs = { diff --git a/hosts/snowbelle/configuration.nix b/hosts/snowbelle/configuration.nix index 11b96d9..99db79b 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -30,6 +30,7 @@ }; services = { jellyfin.enable = true; + vaultwarden.enable = true; sonarr.enable = true; sonarr.port = 7105; prowlarr.enable = true; diff --git a/modules/homelab/services/default.nix b/modules/homelab/services/default.nix index 60566ec..30ac3e3 100644 --- a/modules/homelab/services/default.nix +++ b/modules/homelab/services/default.nix @@ -5,12 +5,14 @@ imports = [ ./jellyfin/default.nix + ./vaultwarden/default.nix ./arr/prowlarr/default.nix ./arr/sonarr/default.nix ]; modules.services.jellyfin.enable = lib.mkDefault false; + modules.services.vaultwarden.enable = lib.mkDefault false; modules.services.prowlarr.enable = lib.mkDefault false; modules.services.sonarr.enable = lib.mkDefault false; }