nix/hosts/prefect/networking.nix
2022-07-27 13:00:59 -04:00

17 lines
308 B
Nix

{lib, ...}: {
networking = {
hostName = "prefect";
interfaces.enp1s0 = {
ipv6.addresses = [
{
address = "2a01:4ff:f0:98bf::";
prefixLength = 64;
}
];
};
defaultGateway6 = {
address = "fe80::1";
interface = "enp1s0";
};
};
}