From 3c2a971fc408adb39bb63e6798189a89112fa53a Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Tue, 9 Apr 2024 17:06:13 -0400 Subject: [PATCH] fix: arrow as host must include filesystems --- hosts/arrow/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/arrow/default.nix b/hosts/arrow/default.nix index fcc9da6..41852b4 100644 --- a/hosts/arrow/default.nix +++ b/hosts/arrow/default.nix @@ -3,6 +3,18 @@ inputs.nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { }; - modules = import ./modules.nix { inherit inputs globals overlays; }; + modules = import ./modules.nix { inherit inputs globals overlays; } ++ [{ + # 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"; + }; + }]; }