···5252 group = lib.mkOption {
5353 type = lib.types.str;
5454 default = if cfg.enableNginx then "nginx" else defaultGroup;
5555- defaultText = "If `services.privatebin.enableNginx` is true then `nginx` else ${defaultGroup}";
5555+ defaultText = lib.literalExpression "if config.services.privatebin.enableNginx then \"nginx\" else \"${defaultGroup}\"";
5656 description = ''
5757 Group under which privatebin runs. It is best to set this to the group
5858 of whatever webserver is being used as the frontend.
···139139 };
140140141141 config = lib.mkIf cfg.enable {
142142-143142 services.privatebin.settings = {
144143 main = lib.mkDefault { };
145144 model.class = lib.mkDefault "Filesystem";