home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 4061cceaefe5bea12bfca3165a150923a4ebe0d9
parent 46a1d4a0c548c3940a9e0f60432bc3bec16b3fa8
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 26 Oct 2020 14:51:14 +0100

systems/kerkouane: force grub for boot

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/kerkouane.nix | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/systems/kerkouane.nix b/systems/kerkouane.nix @@ -64,6 +64,8 @@ in networking.hostName = hostname; boot.loader.grub.device = "/dev/vda"; + boot.loader.grub.enable = lib.mkForce true; + boot.loader.systemd-boot.enable = lib.mkForce false; fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; swapDevices = [{ device = "/swapfile"; size = 1024; }];