mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 15:46:34 +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 = {
|
||||
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";
|
||||
|
@ -68,7 +83,7 @@
|
|||
bootable = true;
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "ext4";
|
||||
format = "bcachefs";
|
||||
mountpoint = "/";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue