switch to arion for authentik
This commit is contained in:
18
flake.lock
generated
18
flake.lock
generated
@@ -1385,11 +1385,11 @@
|
||||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-oZvEsOQ8vT4Gq/IyMfDxZlv2ntum+qC+48boiOPam0Q=",
|
||||
"path": "/nix/store/gfrrk7h8wina4759nyiskw5mpkdsz1cq-source/home-manager",
|
||||
"path": "/nix/store/s073llq4dcg4xbk4n1xxl2nfymn7l1qy-source/home-manager",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/nix/store/gfrrk7h8wina4759nyiskw5mpkdsz1cq-source/home-manager",
|
||||
"path": "/nix/store/s073llq4dcg4xbk4n1xxl2nfymn7l1qy-source/home-manager",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
@@ -2066,11 +2066,11 @@
|
||||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-HAuZ9X84fuwUcit6NWUoJCjHj+29nST/YN6Rs8JQugY=",
|
||||
"path": "/nix/store/0fsbd1c5xzyxkgnzcbhr2rj0sw3av7lx-source/programs",
|
||||
"path": "/nix/store/lzi0acc70g9dvd7005816byna5gz6dba-source/programs",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/nix/store/0fsbd1c5xzyxkgnzcbhr2rj0sw3av7lx-source/programs",
|
||||
"path": "/nix/store/lzi0acc70g9dvd7005816byna5gz6dba-source/programs",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
@@ -2142,11 +2142,11 @@
|
||||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-0Ztx5DVQ2I7hvCK/qjGa4XTdRgbzM8rhf19m0al8lVM=",
|
||||
"path": "/nix/store/0fsbd1c5xzyxkgnzcbhr2rj0sw3av7lx-source/services/sddm",
|
||||
"path": "/nix/store/lzi0acc70g9dvd7005816byna5gz6dba-source/services/sddm",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/nix/store/0fsbd1c5xzyxkgnzcbhr2rj0sw3av7lx-source/services/sddm",
|
||||
"path": "/nix/store/lzi0acc70g9dvd7005816byna5gz6dba-source/services/sddm",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
@@ -2213,12 +2213,12 @@
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-aQc9qbPf9F4pRBZTT08VVGFsOMypSaekgBPP7n5tAZs=",
|
||||
"path": "/nix/store/gfrrk7h8wina4759nyiskw5mpkdsz1cq-source/system-config",
|
||||
"narHash": "sha256-MWV/+CgMGyRUh1JT91p9icCSq/pwO77epMiVjog4N9w=",
|
||||
"path": "/nix/store/s073llq4dcg4xbk4n1xxl2nfymn7l1qy-source/system-config",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/nix/store/gfrrk7h8wina4759nyiskw5mpkdsz1cq-source/system-config",
|
||||
"path": "/nix/store/s073llq4dcg4xbk4n1xxl2nfymn7l1qy-source/system-config",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -138,6 +138,8 @@
|
||||
dive
|
||||
podman-tui
|
||||
podman-compose
|
||||
arion
|
||||
docker-client
|
||||
];
|
||||
|
||||
boot.initrd.postDeviceCommands = lib.mkAfter ''
|
||||
|
||||
@@ -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 = "";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -24,7 +24,7 @@
|
||||
serviceName = "authentik";
|
||||
|
||||
settings = {
|
||||
|
||||
imports = [ ./arion-compose.nix ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
imports = [
|
||||
./gitlab
|
||||
./traefik
|
||||
./authentik-nix
|
||||
# ./authentik-nix
|
||||
./authentik
|
||||
./nginx
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user