From ff3d5a0832058bfc16b540bd67789decdc21f14d Mon Sep 17 00:00:00 2001 From: Elnu <9874955+ElnuDev@users.noreply.github.com> Date: Fri, 7 Oct 2022 15:32:31 -0700 Subject: [PATCH] Add boot partition to hardware configuration --- hardware-configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index cac87c1..03cd1bb 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -19,6 +19,10 @@ device = "/dev/disk/by-label/nixos"; fsType = "ext4"; }; + "/boot" = { + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + }; }; swapDevices = [ ];