nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (241B)


      1 {...}: {
      2 	systemd.network.enable = true;
      3 	systemd.network.networks."30-wan" = {
      4 		matchConfig.Name = "enp1s0";
      5 		networkConfig.DHCP = "ipv4";
      6 		address = [
      7 			"2a01:4f8:1c19:8cba::1/64"
      8 		];
      9 		routes = [
     10 			{Gateway = "fe80::1";}
     11 		];
     12 	};
     13 }