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 { caddyConfig = lib.mkOption {
type = lib.types.submodule ( 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 = { }; default = { };
description = '' description = ''
@ -402,7 +402,7 @@ in
}; };
nginxConfig = lib.mkOption { nginxConfig = lib.mkOption {
type = lib.types.submodule ( 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 = { }; default = { };
description = '' description = ''