fix: arrow must have filesystems

This commit is contained in:
Noah Masur 2025-04-16 14:31:36 -04:00
parent 0aecbd85cd
commit a719dc4309
No known key found for this signature in database

View File

@ -29,4 +29,18 @@ rec {
system.stateVersion = "23.05"; 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";
};
} }