mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 12:42:01 +01:00
25 lines
367 B
Nix
25 lines
367 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "midgard";
|
||
|
defaultGateway = "192.168.1.1";
|
||
|
|
||
|
nameservers = [
|
||
|
"1.1.1.1"
|
||
|
"8.8.8.8"
|
||
|
];
|
||
|
|
||
|
interfaces = {
|
||
|
enp2s0f0 = {
|
||
|
ipv4 = {
|
||
|
addresses = [{
|
||
|
address = "192.168.1.5";
|
||
|
prefixLength = 24;
|
||
|
}];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|