hosts: nixos: porthos: services: disable lidarr

This commit is contained in:
Bruno BELANYI 2023-10-06 23:13:47 +02:00
parent 3b3e7093be
commit f8a0eef4dd
1 changed files with 7 additions and 1 deletions

View File

@ -116,7 +116,13 @@ in
secretKeyFile = secrets."paperless/secret-key".path;
};
# The whole *arr software suite
pirate.enable = true;
pirate = {
enable = true;
# ... But not Lidarr because I don't care for music that much
lidarr = {
enable = false;
};
};
# Podcast automatic downloader
podgrab = {
enable = true;