diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-18 10:43:06 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-18 10:43:06 -0800 |
commit | 5b1701d8f9dbffdbf4b35c2cc15738839340433c (patch) | |
tree | cc21cd1013425fa7baab7851fae98c5b90034f02 | |
parent | 89442ff425e8ea423798666be198b9c529faac99 (diff) | |
download | nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar.gz nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar.bz2 nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar.lz nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar.xz nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.tar.zst nix-5b1701d8f9dbffdbf4b35c2cc15738839340433c.zip |
Force grub option
-rw-r--r-- | hosts/richese/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index b049cde..a906fea 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -2,7 +2,7 @@ boot = { initrd.kernelModules = [ "zfs" ]; #kernelPackages = pkgs.linuxPackages_6_10; - loader.grub.device = "/dev/sda"; + loader.grub.device = lib.mkForce "/dev/sda"; supportedFilesystems = [ "zfs" ]; zfs.devNodes = "/dev/disk/by-label"; }; |