From f0205da719f0e461aaf680b9c3e959ab1dddf3b8 Mon Sep 17 00:00:00 2001 From: zuckerberg <5-zuckerberg@users.noreply.git.neet.dev> Date: Sun, 9 May 2021 10:35:37 -0400 Subject: [PATCH] don't use grub for compute modules --- machines/compute/common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/machines/compute/common.nix b/machines/compute/common.nix index 8130a71..42c3185 100644 --- a/machines/compute/common.nix +++ b/machines/compute/common.nix @@ -5,6 +5,11 @@ ../../common/common.nix ]; + # NixOS wants to enable GRUB by default + boot.loader.grub.enable = false; + # Enables the generation of /boot/extlinux/extlinux.conf + boot.loader.generic-extlinux-compatible.enable = true; + nix.flakes.enable = true; networking.interfaces.eth0.useDHCP = true;