8 lines
150 B
Nix
8 lines
150 B
Nix
{pkgs, ...}: {
|
|
# clean /tmp at each boot
|
|
boot.tmp.cleanOnBoot = true;
|
|
|
|
# use latest kernel
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|