diff options
Diffstat (limited to 'system/boot/boot.nix')
-rw-r--r-- | system/boot/boot.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/system/boot/boot.nix b/system/boot/boot.nix deleted file mode 100644 index f978d26a..00000000 --- a/system/boot/boot.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - config, - pkgs, - ... -}: { - boot = { - initrd = { - #compressor = "lz4"; - #compressorArgs = ["-9"]; - kernelModules = ["nvme" "btrfs"]; - }; - - 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"; - }; - }; - }; -} |