mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 11:10:53 +02:00
Added internal dns to newton
This commit is contained in:
parent
bc47b08d6e
commit
b953c6e208
1 changed files with 9 additions and 1 deletions
|
@ -38,10 +38,18 @@ in
|
||||||
services.zfs.autoSnapshot.enable = true;
|
services.zfs.autoSnapshot.enable = true;
|
||||||
services.zfs.autoScrub.enable = true;
|
services.zfs.autoScrub.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.tailscale ];
|
environment.systemPackages = [ pkgs.tailscale ];
|
||||||
|
|
||||||
# enable the tailscale service
|
# enable the tailscale service
|
||||||
services.tailscale.enable = true;
|
services.tailscale.enable = true;
|
||||||
|
networking.nameservers = [ "100.127.245.71" "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)}
|
||||||
|
options edns0
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue