From 2c8a3cacd59c47bb5bc5e4b00c39634a43f1fc09 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Thu, 13 Jun 2024 15:18:12 +0200 Subject: [PATCH] proxy: Disable logrotate config check service --- machines/proxy/configuration.nix | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/machines/proxy/configuration.nix b/machines/proxy/configuration.nix index 058ffcc..0440f33 100644 --- a/machines/proxy/configuration.nix +++ b/machines/proxy/configuration.nix @@ -74,22 +74,26 @@ firewall.trustedInterfaces = [ "tailscale0" ]; }; - systemd.network = { - enable = true; + systemd = { + services.logrotate-checkconf.enable = false; - wait-online.anyInterface = true; + network = { + enable = true; - networks = { - "40-eth0" = { - matchConfig = { - Name = "eth0"; - }; + wait-online.anyInterface = true; - networkConfig = { - Address = "10.0.0.251/24"; - Gateway = "10.0.0.1"; - DNS = "10.0.0.206"; - DHCP = "no"; + networks = { + "40-eth0" = { + matchConfig = { + Name = "eth0"; + }; + + networkConfig = { + Address = "10.0.0.251/24"; + Gateway = "10.0.0.1"; + DNS = "10.0.0.206"; + DHCP = "no"; + }; }; }; };