proxy: Disable logrotate config check service
This commit is contained in:
parent
3625092420
commit
2c8a3cacd5
1 changed files with 17 additions and 13 deletions
|
@ -74,22 +74,26 @@
|
||||||
firewall.trustedInterfaces = [ "tailscale0" ];
|
firewall.trustedInterfaces = [ "tailscale0" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.network = {
|
systemd = {
|
||||||
enable = true;
|
services.logrotate-checkconf.enable = false;
|
||||||
|
|
||||||
wait-online.anyInterface = true;
|
network = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
networks = {
|
wait-online.anyInterface = true;
|
||||||
"40-eth0" = {
|
|
||||||
matchConfig = {
|
|
||||||
Name = "eth0";
|
|
||||||
};
|
|
||||||
|
|
||||||
networkConfig = {
|
networks = {
|
||||||
Address = "10.0.0.251/24";
|
"40-eth0" = {
|
||||||
Gateway = "10.0.0.1";
|
matchConfig = {
|
||||||
DNS = "10.0.0.206";
|
Name = "eth0";
|
||||||
DHCP = "no";
|
};
|
||||||
|
|
||||||
|
networkConfig = {
|
||||||
|
Address = "10.0.0.251/24";
|
||||||
|
Gateway = "10.0.0.1";
|
||||||
|
DNS = "10.0.0.206";
|
||||||
|
DHCP = "no";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue