Update hosts/docker/configuration.nix

This commit is contained in:
2026-04-14 23:05:01 +00:00
parent 7f7b03384f
commit 8f5f975d83
+18
View File
@@ -39,6 +39,24 @@ in
nfs-utils
];
services.logrotate = {
enable = true;
settings = {
"/mnt/docker-persistent-data/docker/core/traefik/data/logs/*.log" = {
daily = true;
rotate = 14;
compress = true;
delaycompress = true;
missingok = true;
notifempty = true;
copytruncate = true;
};
};
};
boot.supportedFilesystems = [ "nfs" ];
services.rpcbind.enable = true;