From 6c1ff358e2867d386ec49c8d7602e90c87fdfb9a Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 29 Jan 2023 00:01:32 +0800 Subject: [PATCH] hosts/plover: update Hetzner filesystem setup --- hosts/plover/modules/hardware/hetzner-cloud-cx21.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix b/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix index 511fe030..960a599b 100644 --- a/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix +++ b/hosts/plover/modules/hardware/hetzner-cloud-cx21.nix @@ -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"; };