Added kerberos config

This commit is contained in:
Jan-Bulthuis 2025-06-07 21:14:59 +02:00
parent c9b18219af
commit e7b66cb40c

View File

@ -1,4 +1,4 @@
{ flake, ... }:
{ inputs, ... }:
{
# State version
@ -13,6 +13,17 @@
"wireshark"
];
# Set up kerberos
security.krb5 = {
enable = true;
settings = {
libdefaults = {
rdns = false;
};
realms = (inputs.secrets.gewis.krb5Realm);
};
};
# Enable virtualisation for VMs
virtualisation.libvirtd.enable = true;