diff --git a/services/sonarr.nix b/services/sonarr.nix deleted file mode 100644 index 06ee078..0000000 --- a/services/sonarr.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ ... }: -{ - # Enable the sonarr service - services.sonarr = { - enable = true; - openFirewall = true; - group = "media"; - }; - - # Ensure that the media group exists - users.groups.media = { }; -} diff --git a/systems/nix-test.nix b/systems/nix-test.nix deleted file mode 100644 index 83fd5d3..0000000 --- a/systems/nix-test.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: -{ - imports = [ ../services/sonarr.nix ]; - - networking.hostName = "nix-test"; - system.stateVersion = "24.05"; -}