fix various bugs

This commit is contained in:
Chris Kruining 2025-08-13 08:50:26 +02:00
parent f1ffa33976
commit 30f17f692c
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
10 changed files with 40 additions and 36 deletions

View file

@ -78,7 +78,11 @@ in
sonarr = serviceConf;
bazarr = serviceConf;
lidarr = serviceConf;
flaresolverr = serviceConf;
flaresolverr = {
enable = true;
openFirewall = true;
};
jellyseerr = {
enable = true;

View file

@ -6,7 +6,7 @@ let
cfg = config.${namespace}.services.media.nextcloud;
in
{
options.modules.services.nextcloud = {
options.${namespace}.services.media.nextcloud = {
enable = mkEnableOption "Nextcloud";
user = mkOption {
@ -40,7 +40,7 @@ in
services.nextcloud = {
enable = true;
webserver = "caddy";
# webserver = "caddy";
package = pkgs.nextcloud31;
hostName = "localhost";

View file

@ -2,10 +2,10 @@
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.media.nfs;
cfg = config.${namespace}.services.media.nfs;
in
{
options.${namespace}.media.nfs = {
options.${namespace}.services.media.nfs = {
enable = mkEnableOption "Enable NFS";
};