mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2024-12-04 19:40:07 +01:00
15 lines
297 B
Nix
15 lines
297 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";
|
|
};
|
|
};
|
|
}
|