nixos/modules/log-to-ram/default.nix

12 lines
203 B
Nix
Raw Normal View History

2022-08-17 20:26:46 +02:00
{ pkgs, ... }:
{
2022-08-17 21:16:02 +02:00
fileSystems."/var/log" = {
device = "none";
2022-08-17 20:26:46 +02:00
fsType = "tmpfs";
2022-08-17 21:16:02 +02:00
options = [ "defaults" "size=512M" ];
2022-08-17 20:26:46 +02:00
};
services.journald.extraConfig = ''
SystemMaxUse=300M
'';
}