nixos/hosts/vm/mediakiwi/networking.nix

30 lines
434 B
Nix

{ ... }:
{
networking = {
interfaces = {
ens18 = {
ipv4 = {
addresses = [
{
address = "172.16.10.144";
prefixLength = 24;
}
];
};
ipv6 = {
addresses = [
{
address = "fd00::10:0:ff:fe01:4410";
prefixLength = 64;
}
];
};
};
};
};
}