From 3a6d5bb8c402e4ff973b18ef98d32f749ab93421 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 19 Oct 2025 12:17:04 +0200 Subject: [PATCH] fix: nb add /boot mount --- hosts/nb/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/nb/hardware-configuration.nix b/hosts/nb/hardware-configuration.nix index f2d08c3..a1538fb 100644 --- a/hosts/nb/hardware-configuration.nix +++ b/hosts/nb/hardware-configuration.nix @@ -45,6 +45,11 @@ systemd.enable = true; }; + fileSystems."/boot" = { + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + }; + fileSystems."/nix" = { device = "/dev/mapper/root"; fsType = "btrfs";