proxy: Disable logrotate config check service

This commit is contained in:
Erwin Boskma 2024-06-13 15:18:12 +02:00
parent 3625092420
commit 2c8a3cacd5
Signed by: erwin
SSH key fingerprint: SHA256:/Wk1WZdLg+vQHs3in9qq7PsIp8SMzwGSk/RLZ5zPuZk

View file

@ -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";
};
};
};
};