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; }