feat: NextCloud: add the enableImagemagick option

This commit is contained in:
Alan Urmancheev 2024-11-29 16:18:20 +04:00 committed by Inex Code
parent 8cd27f4031
commit 26828f97fb
No known key found for this signature in database

View file

@ -12,6 +12,10 @@
default = "cloud";
type = lib.types.strMatching "[A-Za-z0-9][A-Za-z0-9\-]{0,61}[A-Za-z0-9]";
};
enableImagemagick = lib.mkOption {
type = types.bool;
default = true;
};
};
config =
@ -90,6 +94,8 @@
adminpassFile = admin-pass-filepath;
adminuser = "admin";
};
enableImagemagick = cfg.enableImagemagick;
};
services.nginx.virtualHosts.${hostName} = {
useACMEHost = sp.domain;