From ebc6771a5c539849e5037b278310a489b7ace0c4 Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 14 Aug 2022 12:24:31 +0200 Subject: [PATCH] Move data to dedicated disk --- hosts/storage-2/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/storage-2/hardware-configuration.nix b/hosts/storage-2/hardware-configuration.nix index 4f96150..b632af7 100644 --- a/hosts/storage-2/hardware-configuration.nix +++ b/hosts/storage-2/hardware-configuration.nix @@ -18,6 +18,11 @@ fsType = "ext4"; }; + fileSystems."/data" = + { device = "/dev/disk/by-uuid/d5594332-3352-4920-832f-1b7f38fbbaee"; + fsType = "ext4"; + }; + swapDevices = [ ]; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;