From bbd0b5f83154f5df82e100f93da554c73b06b2cd Mon Sep 17 00:00:00 2001 From: steven carpenter Date: Sun, 14 Sep 2025 18:19:02 -0400 Subject: [PATCH] added authelia container --- .../nixos/authelia-tofu/default.nix | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 configurations/nixos/authelia-tofu/default.nix diff --git a/configurations/nixos/authelia-tofu/default.nix b/configurations/nixos/authelia-tofu/default.nix new file mode 100644 index 0000000..793f817 --- /dev/null +++ b/configurations/nixos/authelia-tofu/default.nix @@ -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"; +}