From d99b6007f3d53a0c42587f4558ffea2669417dac Mon Sep 17 00:00:00 2001 From: blake Date: Tue, 7 Oct 2025 00:17:35 -0500 Subject: [PATCH] 17 current 2025-10-06 23:02:06 25.05.20251001.5b5be50 6.12.49 * --- flake.nix | 2 +- hosts/snowbelle/configuration.nix | 1 + modules/homelab/services/default.nix | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 3db23c7..c80eb90 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 16 current 2025-10-06 23:01:17 25.05.20251001.5b5be50 6.12.49 * +# generation: 17 current 2025-10-06 23:02:06 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 be90d8d..97064b8 100644 --- a/hosts/snowbelle/configuration.nix +++ b/hosts/snowbelle/configuration.nix @@ -27,6 +27,7 @@ }; services = { jellyfin.enable = true; + sonarr.enable = true; }; }; diff --git a/modules/homelab/services/default.nix b/modules/homelab/services/default.nix index cb7beda..9a0cbc1 100644 --- a/modules/homelab/services/default.nix +++ b/modules/homelab/services/default.nix @@ -5,10 +5,11 @@ imports = [ ./jellyfin/default.nix - + ./services/sonarr/default.nix ]; modules.services.jellyfin.enable = lib.mkDefault false; + modules.services.sonarr.enable = lib.mkDefault false; }