nixos: services: rename 'servarr'
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
6f00036b79
commit
0d2b9c9699
|
@ -127,14 +127,6 @@ in
|
|||
passwordFile = secrets."paperless/password".path;
|
||||
secretKeyFile = secrets."paperless/secret-key".path;
|
||||
};
|
||||
# The whole *arr software suite
|
||||
pirate = {
|
||||
enable = true;
|
||||
# ... But not Lidarr because I don't care for music that much
|
||||
lidarr = {
|
||||
enable = false;
|
||||
};
|
||||
};
|
||||
# Podcast automatic downloader
|
||||
podgrab = {
|
||||
enable = true;
|
||||
|
@ -152,6 +144,14 @@ in
|
|||
rss-bridge.enable = true;
|
||||
# Usenet client
|
||||
sabnzbd.enable = true;
|
||||
# The whole *arr software suite
|
||||
servarr = {
|
||||
enable = true;
|
||||
# ... But not Lidarr because I don't care for music that much
|
||||
lidarr = {
|
||||
enable = false;
|
||||
};
|
||||
};
|
||||
# Because I stilll need to play sysadmin
|
||||
ssh-server.enable = true;
|
||||
# Recipe manager
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
./nginx
|
||||
./nix-cache
|
||||
./paperless
|
||||
./pirate
|
||||
./podgrab
|
||||
./postgresql
|
||||
./postgresql-backup
|
||||
|
@ -34,6 +33,7 @@
|
|||
./quassel
|
||||
./rss-bridge
|
||||
./sabnzbd
|
||||
./servarr
|
||||
./ssh-server
|
||||
./tandoor-recipes
|
||||
./tlp
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# [1]: https://youtu.be/I26Ql-uX6AM
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.services.pirate;
|
||||
cfg = config.my.services.servarr;
|
||||
|
||||
ports = {
|
||||
bazarr = 6767;
|
||||
|
@ -53,7 +53,7 @@ let
|
|||
]);
|
||||
in
|
||||
{
|
||||
options.my.services.pirate = {
|
||||
options.my.services.servarr = {
|
||||
enable = lib.mkEnableOption "Media automation";
|
||||
|
||||
bazarr = {
|
Loading…
Reference in a new issue