From e7b66cb40c2e6b341e94ab35ff1ffff11ae05a0b Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Sat, 7 Jun 2025 21:14:59 +0200 Subject: [PATCH] Added kerberos config --- hosts/20212060/configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hosts/20212060/configuration.nix b/hosts/20212060/configuration.nix index 4c3cd0b..084ff82 100644 --- a/hosts/20212060/configuration.nix +++ b/hosts/20212060/configuration.nix @@ -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;