From 1ef22c73784a30d9a33209afb75d17c3421e8011 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Sat, 29 Mar 2025 22:49:56 +0100 Subject: [PATCH] add boot partition --- hosts/zelden/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/zelden/hardware-configuration.nix b/hosts/zelden/hardware-configuration.nix index 57b7179..2cb7178 100644 --- a/hosts/zelden/hardware-configuration.nix +++ b/hosts/zelden/hardware-configuration.nix @@ -27,6 +27,11 @@ fsType = "ext4"; }; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/3EFA-7FDD"; + fsType = "vfat"; + }; + networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";