infrastructure/profiles/common/nixos/system.nix
2021-04-30 18:43:07 +01:00

7 lines
179 B
Nix

{ config, lib, pkgs, ... }:
{
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
boot.tmpOnTmpfs = true;
services.journald.extraConfig = "SystemMaxUse=512M";
}