dump
This commit is contained in:
parent
6ba25b90a9
commit
0f49c6c37c
35 changed files with 747 additions and 120 deletions
|
|
@ -1,13 +1,19 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
networking.hostName = "traefik";
|
||||
networking.interfaces.eth0.ipv4.addresses = [{
|
||||
address = "192.168.1.80";
|
||||
prefixLength = 24;
|
||||
}];
|
||||
networking.interfaces.eth0.ipv4.addresses = [
|
||||
{
|
||||
address = "192.168.1.80";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 8080 8082 ];
|
||||
networking.firewall.allowedTCPPorts = [80 443 8080 8082];
|
||||
|
||||
networking.nameservers = [ "192.168.1.53" ];
|
||||
networking.nameservers = ["192.168.1.53"];
|
||||
networking.defaultGateway = "192.168.1.1";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue