nit: run linter after update
This commit is contained in:
parent
5e3f0a5805
commit
ecb4734faf
6 changed files with 6 additions and 6 deletions
|
|
@ -124,7 +124,7 @@ let
|
|||
|
||||
outputPath = "share/doc/selfhostblocks";
|
||||
|
||||
manpage-urls = pkgs.writeText "manpage-urls.json" ''{}'';
|
||||
manpage-urls = pkgs.writeText "manpage-urls.json" "{}";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "self-host-blocks-manual";
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ let
|
|||
OnCalendar = "daily";
|
||||
Persistent = true;
|
||||
};
|
||||
description = ''When to run the backup. See {manpage}`systemd.timer(5)` for details.'';
|
||||
description = "When to run the backup. See {manpage}`systemd.timer(5)` for details.";
|
||||
example = {
|
||||
OnCalendar = "00:05";
|
||||
RandomizedDelaySec = "5h";
|
||||
|
|
|
|||
|
|
@ -239,7 +239,7 @@ in
|
|||
description = ''
|
||||
Addons to enable on this mitmdump instance.
|
||||
'';
|
||||
example = lib.literalExpression ''[ config.shb.mitmdump.addons.logger ]'';
|
||||
example = lib.literalExpression "[ config.shb.mitmdump.addons.logger ]";
|
||||
};
|
||||
|
||||
extraArgs = mkOption {
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ let
|
|||
OnCalendar = "daily";
|
||||
Persistent = true;
|
||||
};
|
||||
description = ''When to run the backup. See {manpage}`systemd.timer(5)` for details.'';
|
||||
description = "When to run the backup. See {manpage}`systemd.timer(5)` for details.";
|
||||
example = {
|
||||
OnCalendar = "00:05";
|
||||
RandomizedDelaySec = "5h";
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@ in
|
|||
Subdomain under which the firefly-iii data importer will be served.
|
||||
'';
|
||||
default = "${cfg.subdomain}-importer";
|
||||
defaultText = lib.literalExpression ''''${shb.firefly-iii.subdomain}-importer'';
|
||||
defaultText = lib.literalExpression "\${shb.firefly-iii.subdomain}-importer";
|
||||
};
|
||||
|
||||
firefly-iii-accessToken = lib.mkOption {
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ let
|
|||
++ (lib.optionals autheliaEnabled [ "authelia-auth.${cfg.domain}.service" ])
|
||||
++ (lib.optionals lldapEnabled [ "lldap.service" ])
|
||||
)
|
||||
+ lib.strings.concatMapStrings (p: ''server.wait_for_open_port(${toString p})'' + "\n") (
|
||||
+ lib.strings.concatMapStrings (p: "server.wait_for_open_port(${toString p})" + "\n") (
|
||||
waitForPorts args
|
||||
# TODO: when the SSO block exists, replace this hardcoded port.
|
||||
++ (lib.optionals autheliaEnabled [
|
||||
|
|
|
|||
Loading…
Reference in a new issue