hosts/plover: update Hetzner filesystem setup

This commit is contained in:
Gabriel Arazas 2023-01-29 00:01:32 +08:00
parent 8cacfa2867
commit 6c1ff358e2

View File

@ -20,13 +20,13 @@ in
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_scsi" "xhci_pci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = lib.mkOverride 2000 {
fileSystems."/" = {
label = "nixos";
fsType = "ext4";
options = [ "defaults" ];
};
fileSystems."/boot" = lib.mkOverride 2000 {
fileSystems."/boot" = {
label = "boot";
fsType = "vfat";
};