1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../machines/vanaheim/networking.nix

25 lines
364 B
Nix

{ config, lib, pkgs, ... }:
{
networking = {
hostName = "vanaheim";
defaultGateway = "192.168.1.1";
nameservers = [
"1.1.1.1"
"8.8.8.8"
];
interfaces = {
eth0 = {
ipv4 = {
addresses = [{
address = "192.168.1.6";
prefixLength = 24;
}];
};
};
};
};
}