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

11 lines
172 B
Nix
Raw Normal View History

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