mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 09:26:54 +01:00
zap network
This commit is contained in:
parent
ac11c25101
commit
b78ec7e9ef
1 changed files with 16 additions and 1 deletions
|
@ -26,6 +26,21 @@
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
wireless.enable = lib.mkForce false;
|
wireless.enable = lib.mkForce false;
|
||||||
|
interfaces.eth0 = {
|
||||||
|
ipv4.addresses = [{
|
||||||
|
address = "134.255.219.135";
|
||||||
|
prefixLength = 24;
|
||||||
|
}];
|
||||||
|
ipv6.addresses = [{
|
||||||
|
address = "fe80::a018:44ff:fe5a:fb5b";
|
||||||
|
prefixLength = 64;
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
defaultGateway6 = {
|
||||||
|
address = "fe80::";
|
||||||
|
interface = "eth0";
|
||||||
|
};
|
||||||
|
defaultGateway = "134.255.219.255";
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
@ -68,7 +83,7 @@
|
||||||
bootable = true;
|
bootable = true;
|
||||||
content = {
|
content = {
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
format = "ext4";
|
format = "bcachefs";
|
||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue