fix: vendetta was out of sync in time, causing dns auth issues
This commit is contained in:
parent
e990626c7a
commit
39fe45e75a
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, modulesPath, config, ... }:
|
||||
{ pkgs, modulesPath, config, options, ... }:
|
||||
|
||||
{
|
||||
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
|
||||
services.resolved.fallbackDns = config.networking.nameservers;
|
||||
|
||||
|
|
Loading…
Reference in a new issue