updates from makefile
This commit is contained in:
parent
391829eba3
commit
ecffa08119
8 changed files with 116 additions and 70 deletions
|
|
@ -1,9 +1,10 @@
|
|||
{ lib, ... }: {
|
||||
{lib, ...}: {
|
||||
# This file was populated at runtime with the networking
|
||||
# details gathered from the active system.
|
||||
networking = {
|
||||
nameservers = [ "1.1.1.1"
|
||||
];
|
||||
nameservers = [
|
||||
"1.1.1.1"
|
||||
];
|
||||
defaultGateway = "172.31.1.1";
|
||||
defaultGateway6 = {
|
||||
address = "fe80::1";
|
||||
|
|
@ -14,16 +15,34 @@
|
|||
interfaces = {
|
||||
eth0 = {
|
||||
ipv4.addresses = [
|
||||
{ address="178.156.139.49"; prefixLength=32; }
|
||||
{
|
||||
address = "178.156.139.49";
|
||||
prefixLength = 32;
|
||||
}
|
||||
];
|
||||
ipv6.addresses = [
|
||||
{ address="2a01:4ff:f0:9df8::1"; prefixLength=64; }
|
||||
{ address="fe80::9400:3ff:fec3:dc26"; prefixLength=64; }
|
||||
{
|
||||
address = "2a01:4ff:f0:9df8::1";
|
||||
prefixLength = 64;
|
||||
}
|
||||
{
|
||||
address = "fe80::9400:3ff:fec3:dc26";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
ipv4.routes = [
|
||||
{
|
||||
address = "172.31.1.1";
|
||||
prefixLength = 32;
|
||||
}
|
||||
];
|
||||
ipv6.routes = [
|
||||
{
|
||||
address = "fe80::1";
|
||||
prefixLength = 128;
|
||||
}
|
||||
];
|
||||
ipv4.routes = [ { address = "172.31.1.1"; prefixLength = 32; } ];
|
||||
ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ];
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
services.udev.extraRules = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue