hosts/plover: set hardware config for Hetzner Cloud

This commit is contained in:
Gabriel Arazas 2023-01-05 10:56:35 +08:00
parent de3ad5978b
commit 15ad934550

View File

@ -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;
}];
}