12 lines
265 B
Nix
12 lines
265 B
Nix
{ ... }: {
|
|
imports = [ ./dbus ./fonts ./hw ./locale ./network ./nix ./security ./xdg ];
|
|
|
|
services.journald.extraConfig = ''
|
|
SystemMaxUse=512M
|
|
SystemMaxFileSize=64M
|
|
MaxRetentionSec=1month
|
|
RateLimitIntervalSec=30s
|
|
RateLimitBurst=10000
|
|
'';
|
|
}
|