nixos-module/invoice-ninja.nix: fixed typo

This commit is contained in:
Andrew Bryant 2024-12-28 11:51:42 -05:00
parent 4f71751bfb
commit 79b5fa07eb

View File

@ -392,7 +392,7 @@ in
};
caddyConfig = lib.mkOption {
type = lib.types.submodule (
import (modulesPath + "services/web-servers/caddy/vhost-options.nix") { cfg = config.services.caddy; }
import (modulesPath + "/services/web-servers/caddy/vhost-options.nix") { cfg = config.services.caddy; }
);
default = { };
description = ''
@ -402,7 +402,7 @@ in
};
nginxConfig = lib.mkOption {
type = lib.types.submodule (
(import (modulesPath + "services/web-servers/nginx/vhost-options.nix") { inherit config lib; })
(import (modulesPath + "/services/web-servers/nginx/vhost-options.nix") { inherit config lib; })
);
default = { };
description = ''