From da6c3ca4fcfafcb2ad896fc494973082b67cc6fd Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 14 Sep 2023 21:57:18 +0900 Subject: [PATCH] test --- nixos/hosts/nixos-rpi4-01/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/hosts/nixos-rpi4-01/default.nix b/nixos/hosts/nixos-rpi4-01/default.nix index 9904dccc..5468823c 100644 --- a/nixos/hosts/nixos-rpi4-01/default.nix +++ b/nixos/hosts/nixos-rpi4-01/default.nix @@ -8,6 +8,13 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; + # Use the extlinux boot loader. (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; + + # networking.hostName = "nixos"; # Define + boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ];