17 lines
368 B
Nix
17 lines
368 B
Nix
{ config, lib, pkgs, ... }: {
|
|
|
|
networking = {
|
|
hostName = "monitor";
|
|
# interfaces.eth0 = {
|
|
# ipv4.addresses = [{
|
|
# address = "192.168.1.171";
|
|
# prefixLength = 24;
|
|
# }];
|
|
# };
|
|
# firewall.allowedTCPPorts = [ 80 3000 9090 ];
|
|
# defaultGateway = {
|
|
# address = "192.168.1.1";
|
|
# interface = "eth0";
|
|
# };
|
|
};
|
|
}
|