mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-21 09:27:51 +01:00
20 lines
305 B
Nix
20 lines
305 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
security.krb5 = {
|
|
enable = true;
|
|
settings = {
|
|
libdefaults = {
|
|
default_realm = "PVV.NTNU.NO";
|
|
dns_lookup_realm = "yes";
|
|
dns_lookup_kdc = "yes";
|
|
};
|
|
realms."PVV.NTNU.NO".admin_server = "kdc.pvv.ntnu.no";
|
|
};
|
|
};
|
|
}
|