From e8a94df6ce6734bd99b67a0ffebaf09e02c84fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Mon, 31 Mar 2025 23:45:41 +0200 Subject: [PATCH] enable systemd-resolved --- common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common.nix b/common.nix index 19df58f..7db4c12 100644 --- a/common.nix +++ b/common.nix @@ -24,6 +24,14 @@ 53 ]; + services.resolved = { + enable = true; + dnssec = "true"; + domains = [ "~." ]; + fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ]; + dnsovertls = "true"; + }; + # Set your time zone. time.timeZone = "Europe/Paris";