bekkalokk/kerberos: remove vendored module

This commit is contained in:
h7x4
2025-12-22 11:17:58 +09:00
parent a238540e04
commit f58c935966
5 changed files with 1 additions and 1722 deletions

View File

@@ -0,0 +1,14 @@
{ 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";
};
};
}