Files
lavitz/modules/boot.nix

19 lines
413 B
Nix

{ config, pkgs, ... }:
{
boot.loader.systemd-boot = {
enable = true;
editor = false;
configurationLimit = 10;
};
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = [ "tcp_bbr" ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [ "preempt=full" ];
boot.tmp.useTmpfs = true;
boot.tmp.tmpfsSize = "4G";
}