fix: vendetta was out of sync in time, causing dns auth issues

This commit is contained in:
silver 2023-06-17 22:09:18 +01:00
parent e990626c7a
commit 39fe45e75a

View file

@ -1,4 +1,4 @@
{ pkgs, modulesPath, config, ... }: { pkgs, modulesPath, config, options, ... }:
{ {
imports = [ imports = [
@ -59,6 +59,10 @@
]; ];
}; };
# time on vendetta is strangely out of sync
networking.timeServers = options.networking.timeServers.default ++ [ "ie.pool.ntp.org" ];
services.ntp.enable = true;
# use teh above nameservers as the fallback dns # use teh above nameservers as the fallback dns
services.resolved.fallbackDns = config.networking.nameservers; services.resolved.fallbackDns = config.networking.nameservers;