fix authentik on vps

This commit is contained in:
Dmitriy Kholkin 2024-10-24 02:01:31 +03:00
parent a7df22f9f9
commit 2960193e0e
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -266,8 +266,17 @@
networking.firewall.interfaces."podman+".allowedUDPPorts = [ 53 5353 ];
security.unprivilegedUsernsClone = true;
nixpkgs.overlays = [
nixpkgs.overlays = let
unstable = import inputs.nixpkgs {
config = config.nixpkgs.config;
localSystem = { system = pkgs.hostPlatform.system; };
};
in [
inputs.ataraxiasjel-nur.overlays.default
(final: prev: {
authentik = unstable.authentik;
authentik-outposts = unstable.authentik-outposts;
})
];
system.stateVersion = "24.05";