From b42c5670c772e2ea774de1ef82e4ad04739a9cf8 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 21 Oct 2025 21:26:09 +0300 Subject: [PATCH] rpi dont use the systemd-boot --- hosts/nixos/harmonica-sd/configuration.nix | 1 + hosts/nixos/harmonica/configuration.nix | 1 + hosts/nixos/pochita/configuration.nix | 1 + 3 files changed, 3 insertions(+) diff --git a/hosts/nixos/harmonica-sd/configuration.nix b/hosts/nixos/harmonica-sd/configuration.nix index 473fa06..93c94c6 100644 --- a/hosts/nixos/harmonica-sd/configuration.nix +++ b/hosts/nixos/harmonica-sd/configuration.nix @@ -15,6 +15,7 @@ desktopEnvironment = "none"; fonts.enable = false; services.tailscale.enable = true; + hardware.systemd-boot.enable = false; # SD card uses extlinux }; i18n.inputMethod.enable = lib.mkForce false; # no need for japanese input method diff --git a/hosts/nixos/harmonica/configuration.nix b/hosts/nixos/harmonica/configuration.nix index b06bfba..102da9e 100644 --- a/hosts/nixos/harmonica/configuration.nix +++ b/hosts/nixos/harmonica/configuration.nix @@ -11,6 +11,7 @@ osbmModules = { desktopEnvironment = "none"; machineType = "server"; + hardware.systemd-boot.enable = false; # Uses extlinux bootloader }; i18n.inputMethod.enable = lib.mkForce false; # no need for japanese input method diff --git a/hosts/nixos/pochita/configuration.nix b/hosts/nixos/pochita/configuration.nix index f906a6f..1149d8f 100644 --- a/hosts/nixos/pochita/configuration.nix +++ b/hosts/nixos/pochita/configuration.nix @@ -15,6 +15,7 @@ osbmModules = { desktopEnvironment = "none"; machineType = "server"; + hardware.systemd-boot.enable = false; # Raspberry Pi uses init-script bootloader services.forgejo.enable = true; services.cloudflared.enable = true; services.vaultwarden.enable = true;