jungle/common/boot.nix

37 lines
916 B
Nix
Raw Normal View History

2023-04-28 11:50:43 +02:00
{ lib, pkgs, ... }:
2023-03-31 18:27:25 +02:00
{
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = lib.mkForce true;
2023-03-31 18:27:25 +02:00
boot.loader.grub.version = 2;
2023-04-03 12:51:44 +02:00
# Enable GRUB2 serial console
boot.loader.grub.extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_input --append serial
terminal_output --append serial
'';
2023-03-31 18:27:25 +02:00
# Enable serial console
boot.kernelParams = [
"console=tty1"
"console=ttyS0,115200"
];
2023-04-03 12:51:44 +02:00
2023-04-28 11:50:43 +02:00
boot.kernelPackages = pkgs.linuxPackages_latest;
#boot.kernelPatches = lib.singleton {
# name = "osnoise-tracer";
# patch = null;
# extraStructuredConfig = with lib.kernel; {
# OSNOISE_TRACER = yes;
# HWLAT_TRACER = yes;
# };
#};
2023-04-18 18:37:01 +02:00
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "ehci_pci" "nvme" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2023-03-31 18:27:25 +02:00
}