From dcaa7656519acea43d55b406ada306842b6518e8 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 22 May 2020 17:56:30 +0200 Subject: [PATCH] grafana: switch to serv subnet --- hosts/containers/grafana/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/containers/grafana/configuration.nix b/hosts/containers/grafana/configuration.nix index e47ad8d7..2bac20fc 100644 --- a/hosts/containers/grafana/configuration.nix +++ b/hosts/containers/grafana/configuration.nix @@ -19,6 +19,8 @@ networking.hostName = "grafana"; networking.useNetworkd = true; + networking.interfaces.eth0.ipv4.addresses = [ { address = "172.20.73.43"; prefixLength = 26; } ]; + networking.defaultGateway = "172.20.73.1"; # http https influxdb networking.firewall.allowedTCPPorts = [ 80 443 8086 ];