forked from Drift/pvv-nixos-config
switch to systemd-resolved and add domains to search for fqdns from hostnames
This commit is contained in:
parent
71be92b790
commit
423b0fb29b
6
base.nix
6
base.nix
|
@ -7,6 +7,12 @@
|
|||
|
||||
networking.domain = "pvv.ntnu.no";
|
||||
networking.useDHCP = false;
|
||||
networking.search = [ "pvv.ntnu.no" "pvv.org" ];
|
||||
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
dnssec = "false"; # Supposdly this keeps breaking and the default is to allow downgrades anyways...
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Oslo";
|
||||
|
||||
|
|
Loading…
Reference in New Issue