fix: changed dns server for tower

This commit is contained in:
Julien Malka 2023-03-23 12:39:01 +01:00
parent 66ce90f881
commit 898f4c0288
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -19,7 +19,7 @@
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.nameservers = [ "100.127.245.71" "9.9.9.9" ];
networking.nameservers = [ "100.100.45.5" "9.9.9.9" ];
environment.etc."resolv.conf" = with lib; with pkgs; {
source = writeText "resolv.conf" ''
${concatStringsSep "\n" (map (ns: "nameserver ${ns}") config.networking.nameservers)}