diff --git a/hardware/default.nix b/hardware/default.nix index 50648a2..5efdbbb 100644 --- a/hardware/default.nix +++ b/hardware/default.nix @@ -8,7 +8,8 @@ boot.growPartition = true; boot.loader.grub.device = "/dev/vda"; - fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; }; + fileSystems."/boot" = lib.mkDefault { device = "/dev/vda1"; fsType = "vfat"; options=[ "fmask=0022" "dmask=0022" ]; }; + fileSystems."/" = lib.mkDefault { device = "/dev/vda2"; fsType = "ext4"; }; networking.useNetworkd = true; };