Add gssapi-realm to all domains

This commit is contained in:
2023-01-17 13:30:45 -08:00
parent 0375d2c980
commit 2347610514
3 changed files with 19 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
{ lib, entities, ... }:
let
getHostSite = hostname: entities.hosts."${hostname}".site;
getHostDomain = hostname: entities.domains."${hostname}".domain;
getHostRealm = hostname: (getHostDomain hostname).gssapi-realm;
in { inherit getHostSite getHostDomain getHostRealm; }