authelia: move web to arguments as authelia-web

This commit is contained in:
eyjhb
2025-02-10 12:00:26 +01:00
parent 70dab40f0c
commit d0e8b2ea0c
+3 -1
View File
@@ -7,6 +7,7 @@
installShellFiles,
callPackage,
nixosTests,
authelia-web ? callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; },
}:
let
@@ -16,7 +17,8 @@ let
src
vendorHash
;
web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; };
web = authelia-web;
in
buildGoModule rec {
inherit