feat: add terraforming of authentik
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
Xavier Morel
2026-03-25 21:24:08 +01:00
parent f66447fd26
commit 047d68a998
30 changed files with 819 additions and 142 deletions
+1
View File
@@ -5,6 +5,7 @@ in
{
my-lxc.auth = {
container = {
enable = true;
cores = 2;
memory = 1024;
disk = "8G";
+30
View File
@@ -0,0 +1,30 @@
{ ... }:
let
db_pass = import ../config/_passwords.nix;
in
{
my-lxc.papers = {
container = {
cores = 1;
memory = 512;
disk = "6G";
swap = 512;
};
db = {
enable = true;
password = db_pass.papers;
};
system = {
port = 80; # open in firewall + expose on proxy
importConfig = [
../config/papers-paperless.nix
];
};
logging = {
enable = true;
metricsEnable = true;
};
private = true; # available only on private lan
auth = false; # true; # auth overlay
};
}
+1 -1
View File
@@ -7,7 +7,7 @@ in
container = {
cores = 1;
memory = 512;
disk = "4G";
disk = "5G";
swap = 512;
};
db = {