From 39fe45e75a4295d2764108dd78a4bae5a45b23e3 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sat, 17 Jun 2023 22:09:18 +0100 Subject: [PATCH] fix: vendetta was out of sync in time, causing dns auth issues --- machines/_base.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/machines/_base.nix b/machines/_base.nix index 8280e89..75af035 100644 --- a/machines/_base.nix +++ b/machines/_base.nix @@ -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;