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/asgard/networking.nix
2022-02-20 17:46:48 +01:00

25 lines
367 B
Nix

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