dns fixes

This commit is contained in:
Henry Hiles 2026-05-29 17:00:52 -04:00
commit 65eec7ec06
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
4 changed files with 6 additions and 3 deletions

5
modules/common/dns.nix Normal file
View file

@ -0,0 +1,5 @@
{ lib, ... }:
{
networking.resolvconf.enable = false;
environment.etc."resolv.conf".text = lib.mkForce "nameserver 127.0.0.1";
}