switch to arion for authentik

This commit is contained in:
2024-11-09 15:50:55 -06:00
parent d17bac9978
commit 4fc11e17fa
5 changed files with 61 additions and 11 deletions

View File

@@ -0,0 +1,47 @@
{ pkgs, ... }: {
project.name = "authentik";
services = {
postgres.service = {
image = "";
restart = "";
command = "";
volumes = [];
healthcheck = {};
user = "";
env_file = "";
};
redis.service = {
image = "";
restart = "";
command = "";
volumes = [];
healthcheck = {};
user = "";
env_file = "";
};
server.service = {
image = "";
restart = "";
command = "";
volumes = [];
healthcheck = {};
user = "";
env_file = "";
};
worker.service = {
image = "";
restart = "";
command = "";
volumes = [];
healthcheck = {};
user = "";
env_file = "";
};
};
}

View File

@@ -24,7 +24,7 @@
serviceName = "authentik";
settings = {
imports = [ ./arion-compose.nix ];
};
};
};

View File

@@ -3,7 +3,8 @@
imports = [
./gitlab
./traefik
./authentik-nix
# ./authentik-nix
./authentik
./nginx
];
}