WIP: Move krb5 realm to pvv.local, make sane ldap structure
Some checks failed
Eval nix flake / evals (push) Has been cancelled

This commit is contained in:
2024-07-07 00:07:59 +02:00
committed by h7x4
parent 735d590f85
commit 051dd82f57
4 changed files with 66 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
{ config, pkgs, values, ... }:
{ config, pkgs, values, lib, ... }:
{
imports = [
./hardware-configuration.nix
@@ -7,7 +7,7 @@
../../misc/metrics-exporters.nix
./services/heimdal.nix
./services/openldap.nix
#./services/openldap.nix
./services/cyrus-sasl.nix
];
@@ -21,7 +21,11 @@
services.resolved.enable = false;
networking.hostName = "dagali";
networking.search = [ "pvv.ntnu.no" "pvv.org" ];
networking.domain = lib.mkForce "pvv.local";
networking.hosts = {
"129.241.210.185" = [ "dagali.pvv.local" ];
};
#networking.search = [ "pvv.ntnu.no" "pvv.org" ];
networking.nameservers = [ "129.241.0.200" "129.241.0.201" ];
networking.tempAddresses = "disabled";
networking.networkmanager.enable = true;