Skip to content

Commit 939b1ae

Browse files
committed
1 parent 3082a94 commit 939b1ae

File tree

7 files changed

+8
-15
lines changed

7 files changed

+8
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please note that this project is not directly affiliated with the official [auth
1616
* [flake.nix](./flake.nix)
1717
This flake provides packages (server, worker, outposts, ...) as outputs, a NixOS module and a simple VM integration test for the module.
1818
* [module.nix](./module.nix)
19-
The NixOS module configures authentik services, redis and (by default) a local postgres instance. The upstream default authentik configuration can be partially overridden by setting desired parameters under `services.authentik.settings`.
19+
The NixOS module configures authentik services and (by default) a local postgres instance. The upstream default authentik configuration can be partially overridden by setting desired parameters under `services.authentik.settings`.
2020
* [poetry2nix-python-overrides.nix](./poetry2nix-python-overrides.nix)
2121
contains overrides and fixes for building the python env
2222
* [minimal-vmtest.nix](./tests/minimal-vmtest.nix)

components/gopkgs.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ buildGo124Module {
4848
"cmd/proxy"
4949
"cmd/radius"
5050
];
51-
vendorHash = "sha256-wTTEDBRYCW1UFaeX49ufLT0c17sacJzcCaW/8cPNYR4=";
51+
vendorHash = "sha256-m2shrCwoVdbtr8B83ZcAyG+J6dEys2xdjtlfFFF4CDo=";
5252
nativeBuildInputs = [ makeWrapper ];
5353
doCheck = false;
5454
postInstall = ''

flake.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
};
4343
authentik-src = {
4444
# change version string in outputs as well when updating
45-
url = "github:goauthentik/authentik/version/2025.8.4";
45+
url = "github:goauthentik/authentik/version/2025.10.0";
4646
flake = false;
4747
};
4848
};
@@ -67,7 +67,7 @@
6767
...
6868
}:
6969
let
70-
authentik-version = "2025.8.4"; # to pass to the drvs of some components
70+
authentik-version = "2025.10.0"; # to pass to the drvs of some components
7171
in
7272
{
7373
systems = import inputs.systems;

module.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,6 @@ in
295295
};
296296
media.enable_upload = mkDefault true;
297297
};
298-
redis.servers.authentik = {
299-
enable = true;
300-
port = 6379;
301-
};
302298
postgresql = mkIf cfg.createDatabase {
303299
enable = true;
304300
ensureDatabases = [ "authentik" ];
@@ -394,7 +390,6 @@ in
394390
];
395391
after = [
396392
"network-online.target"
397-
"redis-authentik.service"
398393
]
399394
++ (lib.optionals cfg.createDatabase [ "postgresql.service" ]);
400395
restartTriggers = [ config.environment.etc."authentik/config.yml".source ];

tests/minimal-vmtest.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ pkgs.nixosTest {
5151
start_all()
5252
5353
authentik.wait_for_unit("postgresql.service")
54-
authentik.wait_for_unit("redis-authentik.service")
5554
authentik.wait_for_unit("authentik-migrate.service")
5655
authentik.wait_for_unit("authentik-worker.service")
5756
authentik.wait_for_unit("authentik.service")

tests/override-scope.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ pkgs.nixosTest {
9292
start_all()
9393
9494
authentik.wait_for_unit("postgresql.service")
95-
authentik.wait_for_unit("redis-authentik.service")
9695
authentik.wait_for_unit("authentik-migrate.service")
9796
authentik.wait_for_unit("authentik-worker.service")
9897
authentik.wait_for_unit("authentik.service")

0 commit comments

Comments
 (0)