16 lines
278 B
Nix
16 lines
278 B
Nix
|
|
{
|
||
|
|
den.aspects = {
|
||
|
|
base = {
|
||
|
|
nixos = {
|
||
|
|
services = {
|
||
|
|
fstrim.enable = true;
|
||
|
|
journald.extraConfig = ''
|
||
|
|
SystemMaxUse=100M
|
||
|
|
MaxFileSec=3day
|
||
|
|
'';
|
||
|
|
nscd.enableNsncd = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|