diff --git a/hosts/plover/hardware-configuration.nix b/hosts/plover/hardware-configuration.nix index 60d43019..7d118051 100644 --- a/hosts/plover/hardware-configuration.nix +++ b/hosts/plover/hardware-configuration.nix @@ -8,6 +8,17 @@ fileSystems."/" = lib.mkOverride 2000 { label = "nixos"; fsType = "ext4"; - autoResize = true; + options = [ "defaults" ]; }; + + fileSystems."/boot" = lib.mkOverride 2000 { + label = "boot"; + fsType = "vfat"; + }; + + swapDevices = [{ + label = "swap"; + options = [ "defaults" ]; + priority = 5; + }]; }