ejabberd service: add image thumbnailing support
This commit is contained in:
parent
bbde5400cf
commit
f7c02f8670
@ -78,6 +78,12 @@ in {
|
|||||||
description = "Configuration dumps that should be loaded on the first startup";
|
description = "Configuration dumps that should be loaded on the first startup";
|
||||||
example = literalExample "[ ./myejabberd.dump ]";
|
example = literalExample "[ ./myejabberd.dump ]";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imagemagick = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Add ImageMagick to server's path; allows for image thumbnailing";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -105,7 +111,7 @@ in {
|
|||||||
description = "ejabberd server";
|
description = "ejabberd server";
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
path = [ pkgs.findutils pkgs.coreutils ];
|
path = [ pkgs.findutils pkgs.coreutils ] ++ lib.optional cfg.imagemagick pkgs.imagemagick;
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "forking";
|
Type = "forking";
|
||||||
|
Loading…
Reference in New Issue
Block a user