diff options
author | ene <ene@sils.li> | 2023-02-11 12:07:32 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-11 12:10:44 +0100 |
commit | f7634949fa4e744cd5a930505ac4e9b4f81dc530 (patch) | |
tree | 7a290ad625f47430d40facaceb4f5c0706058eb8 /system/boot/boot.nix | |
parent | Feat(home-manager): Add firefox config (diff) | |
download | nixos-config-f7634949fa4e744cd5a930505ac4e9b4f81dc530.tar.gz nixos-config-f7634949fa4e744cd5a930505ac4e9b4f81dc530.zip |
Feat: Switch to default.nix
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"; - }; - }; - }; -} |