1
0

Compare commits

..

3 Commits

Author SHA1 Message Date
Flake Update Bot
bd9b6474b7 Update from updated-inputs-2024-08-29-01-03 2024-08-29 03:03:05 +02:00
Flake Update Bot
236a495f83 Update nixpkgs 2024-08-29-01-03 2024-08-29 03:03:03 +02:00
8f398404d5
configuration/common: Limit journald log retention time 2024-08-28 08:21:26 +02:00
2 changed files with 10 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./nix.nix ./nix.nix
./programs.nix ./programs.nix
./ssh.nix ./ssh.nix
./systemd.nix
./user.nix ./user.nix
./web.nix ./web.nix
]; ];

View File

@ -0,0 +1,9 @@
{ ... }:
{
services.journald.extraConfig = ''
MaxRetentionSec=7days
'';
}