fs: remove boot.loader.grub

This commit is contained in:
makefu 2024-05-31 10:38:37 +02:00
parent 1abd71ac62
commit 9f6f4205da
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
3 changed files with 0 additions and 3 deletions

View file

@ -3,7 +3,6 @@
# vda1 ext4 (label nixos) -> only root partition
{
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = {

View file

@ -13,7 +13,6 @@
{
boot = {
loader.grub.enable = true;
loader.grub.version = 2;
loader.grub.device = lib.mkDefault "/dev/sda";
#initrd.luks.cryptoModules = ["aes" "sha512" "sha1" "xts" ];

View file

@ -3,7 +3,6 @@
# fdisk /dev/sda
# mkfs.ext4 -L nixos /dev/sda1
boot.loader.grub.enable = assert config.boot.loader.grub.device != ""; true;
boot.loader.grub.version = 2;
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";