added authelia container
This commit is contained in:
parent
8a2acb343b
commit
bbd0b5f831
1 changed files with 26 additions and 0 deletions
26
configurations/nixos/authelia-tofu/default.nix
Normal file
26
configurations/nixos/authelia-tofu/default.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue