nit: run linter after update

This commit is contained in:
ibizaman 2026-01-12 09:58:47 +01:00 committed by Pierre Penninckx
parent cfc19f2548
commit 7b58458270
6 changed files with 6 additions and 6 deletions

View file

@ -124,7 +124,7 @@ let
outputPath = "share/doc/selfhostblocks"; outputPath = "share/doc/selfhostblocks";
manpage-urls = pkgs.writeText "manpage-urls.json" ''{}''; manpage-urls = pkgs.writeText "manpage-urls.json" "{}";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "self-host-blocks-manual"; name = "self-host-blocks-manual";

View file

@ -98,7 +98,7 @@ let
OnCalendar = "daily"; OnCalendar = "daily";
Persistent = true; 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 = { example = {
OnCalendar = "00:05"; OnCalendar = "00:05";
RandomizedDelaySec = "5h"; RandomizedDelaySec = "5h";

View file

@ -239,7 +239,7 @@ in
description = '' description = ''
Addons to enable on this mitmdump instance. 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 { extraArgs = mkOption {

View file

@ -102,7 +102,7 @@ let
OnCalendar = "daily"; OnCalendar = "daily";
Persistent = true; 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 = { example = {
OnCalendar = "00:05"; OnCalendar = "00:05";
RandomizedDelaySec = "5h"; RandomizedDelaySec = "5h";

View file

@ -271,7 +271,7 @@ in
Subdomain under which the firefly-iii data importer will be served. Subdomain under which the firefly-iii data importer will be served.
''; '';
default = "${cfg.subdomain}-importer"; 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 { firefly-iii-accessToken = lib.mkOption {

View file

@ -78,7 +78,7 @@ let
++ (lib.optionals autheliaEnabled [ "authelia-auth.${cfg.domain}.service" ]) ++ (lib.optionals autheliaEnabled [ "authelia-auth.${cfg.domain}.service" ])
++ (lib.optionals lldapEnabled [ "lldap.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 waitForPorts args
# TODO: when the SSO block exists, replace this hardcoded port. # TODO: when the SSO block exists, replace this hardcoded port.
++ (lib.optionals autheliaEnabled [ ++ (lib.optionals autheliaEnabled [