Files
pvv-nixos-config/base/networking.nix
oysteikt 3f5eadcb87
Build topology graph / evals (push) Successful in 2m42s
Eval nix flake / evals (push) Failing after 3m12s
base/resolved: use RFC42 format
2026-05-25 10:40:04 +09:00

14 lines
390 B
Nix

{ lib, values, ... }:
{
systemd.network.enable = true;
networking.domain = "pvv.ntnu.no";
networking.useDHCP = false;
# The rest of the networking configuration is usually sourced from /values.nix
services.resolved = {
enable = lib.mkDefault true;
settings.Resolve.DNSSEC = false; # Supposdly this keeps breaking and the default is to allow downgrades anyways...
};
}