From f6a3e5e9d7d0ad108209a5ed73a1a0931e401615 Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Fri, 29 May 2026 00:05:02 +0300 Subject: [PATCH] feat(ada): bootspec init Signed-off-by: s0me1newithhand7s --- ada/boot/bootspec.nix | 8 ++++++++ ada/default.nix | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 ada/boot/bootspec.nix diff --git a/ada/boot/bootspec.nix b/ada/boot/bootspec.nix new file mode 100644 index 0000000..6761d17 --- /dev/null +++ b/ada/boot/bootspec.nix @@ -0,0 +1,8 @@ +_: { + boot = { + bootspec = { + enable = true; + enableValidation = false; + }; + }; +} diff --git a/ada/default.nix b/ada/default.nix index 38a0838..f84e927 100644 --- a/ada/default.nix +++ b/ada/default.nix @@ -1,12 +1,11 @@ {self, ...}: { imports = [ - "${self}/ada/age/rekey.nix" - "${self}/ada/boot/initrd.nix" "${self}/ada/boot/kernel.nix" "${self}/ada/boot/lanzaboote.nix" "${self}/ada/boot/plymouth.nix" "${self}/ada/boot/tmp.nix" + "${self}/ada/boot/bootspec.nix" "${self}/ada/boot/loader/systemd-boot.nix" "${self}/ada/disko/disk.nix"