added authelia container
Some checks failed
/ check (push) Failing after 14s
/ deploy (push) Has been skipped

This commit is contained in:
steven carpenter 2025-09-14 18:19:02 -04:00
parent 8a2acb343b
commit bbd0b5f831

View file

@ -0,0 +1,26 @@
{
flake,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
services.yggdrasil.persistentKeys = false;
deploy = {
enable = false;
};
networking = {
hostName = "base-tofu";
};
environment.systemPackages = [
authelia
];
system.stateVersion = "25.05";
}