Add Radarr

This commit is contained in:
Wekuz 2026-04-11 21:08:59 +03:00
parent 87dbe50e8c
commit e9a6d153ad
Signed by: Wekuz
GPG key ID: 2E502F2AABD32DF9

View file

@ -71,6 +71,7 @@
8096 # Jellyfin 8096 # Jellyfin
15835 # Glance 15835 # Glance
15836 # qBittorrent (Web UI) 15836 # qBittorrent (Web UI)
15837 # Radarr
17650 # qBittorrent (torrent) 17650 # qBittorrent (torrent)
]; ];
}; };
@ -231,6 +232,13 @@
LegalNotice.Accepted = true; LegalNotice.Accepted = true;
}; };
}; };
radarr = {
enable = true;
package = pkgs.unstable.radarr;
settings = {
server.port = 15837;
};
};
}; };
environment.variables.EDITOR = "nvim"; environment.variables.EDITOR = "nvim";
@ -262,12 +270,18 @@
"media" "media"
]; ];
}; };
radarr = {
extraGroups = [
"media"
];
};
}; };
}; };
systemd.tmpfiles.rules = [ systemd.tmpfiles.rules = [
"d /storage 0755 root root -" "d /storage 0755 root root -"
"d /storage/media 2775 wekuz media -" "d /storage/media 2775 wekuz media -"
"d /storage/media/movies 2775 wekuz media -"
"d /storage/torrents 2775 wekuz media -" "d /storage/torrents 2775 wekuz media -"
]; ];