about summary refs log tree commit diff stats
path: root/system/boot/boot.nix
blob: 629e63ae14d3975f8c221ea470c6d543abb7b4b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  config,
  pkgs,
  ...
}: {
  boot = {
    initrd = {
      compressor = "lz4";
      compressorArgs = ["-9"];
    };

    kernelPackages = pkgs.linuxPackages_latest;
    loader = {
      grub = {
        enable = true;
        version = 2;
        theme = pkgs.nixos-grub2-theme;
        splashImage = ./boot_pictures/gnu.png;
        efiSupport = true;
        device = "nodev"; # only for efi
      };
      efi = {
        canTouchEfiVariables = true;
        efiSysMountPoint = "/boot";
      };
    };
  };
}