authelia: actually remember me

This commit is contained in:
eyjhb 2025-02-09 10:34:41 +01:00
parent e8271a99e4
commit aa6df3dde3
Signed by: eyjhb
GPG key ID: 609F508E3239F920
3 changed files with 34 additions and 16 deletions

View file

@ -18,6 +18,30 @@ in sources // {
# url = "https://github.com/NixOS/nixpkgs/pull/353360.patch";
# sha256 = "sha256-WPNnvVmtySyEk58kVIYWVx3VN8MhX4v2ITLLnUGhpz4=";
# })
(pkgs.writeText "authelia.patch" ''
diff --git a/pkgs/servers/authelia/default.nix b/pkgs/servers/authelia/default.nix
index 2c49c09b0550..35f0827f89d7 100644
--- a/pkgs/servers/authelia/default.nix
+++ b/pkgs/servers/authelia/default.nix
@@ -7,6 +7,7 @@
installShellFiles,
callPackage,
nixosTests,
+ web ? callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; },
}:
let
@@ -16,7 +17,7 @@ let
src
vendorHash
;
- web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; };
+ # web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; };
in
buildGoModule rec {
inherit
'')
];
};
}