feat: authentik
This commit is contained in:
parent
3251ac1aee
commit
b0c56c61b5
6 changed files with 334 additions and 32 deletions
|
|
@ -319,7 +319,7 @@
|
|||
fprintd.enable = true;
|
||||
blueman.enable = true;
|
||||
onedrive.enable = true;
|
||||
udev.packages = [ pkgs.yubikey-personalization ];
|
||||
udev.packages = [pkgs.yubikey-personalization];
|
||||
};
|
||||
|
||||
# List services that you want to enable:
|
||||
|
|
|
|||
20
hosts/hitsugibune/authentik.nix
Normal file
20
hosts/hitsugibune/authentik.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{config, ...}: {
|
||||
age.secrets.authentik-env = {
|
||||
file = ../../secrets/authentik.age;
|
||||
};
|
||||
|
||||
services.authentik = {
|
||||
enable = true;
|
||||
environmentFile = config.age.secrets.authentik-env.path;
|
||||
settings = {
|
||||
disable_startup_analytics = true;
|
||||
avatars = "initials";
|
||||
};
|
||||
|
||||
nginx = {
|
||||
enable = true;
|
||||
enableACME = true;
|
||||
host = "auth.sprechtl.me";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue