From a719dc43097097b6c4d2000721e78ecbc76f04a2 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 16 Apr 2025 14:31:36 -0400 Subject: [PATCH] fix: arrow must have filesystems --- hosts/x86_64-linux/arrow/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hosts/x86_64-linux/arrow/default.nix b/hosts/x86_64-linux/arrow/default.nix index f5b742f..d9eb386 100644 --- a/hosts/x86_64-linux/arrow/default.nix +++ b/hosts/x86_64-linux/arrow/default.nix @@ -29,4 +29,18 @@ rec { system.stateVersion = "23.05"; + # These filesystems are ignored by nixos-generators + + # This is the root filesystem containing NixOS + fileSystems."/" = { + device = "/dev/disk/by-label/nixos"; + fsType = "ext4"; + }; + + # This is the boot filesystem for Grub + fileSystems."/boot" = { + device = "/dev/disk/by-label/boot"; + fsType = "vfat"; + }; + }