1
0
Files
configuration
common
desktop
dn42
gpg-ssh
hetzner-cloud
default.nix
hydra-build-machine
proxmox-vm
router
flake
hosts
lib
modules
pkgs
users
.gitignore
README.md
flake.lock
flake.nix
nixfiles/configuration/hetzner-cloud/default.nix
2023-05-20 17:20:33 +02:00

9 lines
306 B
Nix

{ ... }:
{
networking.useDHCP = false;
networking.defaultGateway6 = { address = "fe80::1"; interface = "ens3"; };
networking.defaultGateway = { address = "172.31.1.1"; interface = "ens3"; };
networking.nameservers = [ "2a01:4ff:ff00::add:2" "2a01:4ff:ff00::add:1" "185.12.64.2" "185.12.64.1" ];
}