From 864f85559838c903187dbba69899f7ab48435597 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Fri, 18 Oct 2024 10:35:14 -0500 Subject: [PATCH] add 2nd hard drive to lio --- hosts/lio/hardware-configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/lio/hardware-configuration.nix b/hosts/lio/hardware-configuration.nix index 5eee04f..d415837 100644 --- a/hosts/lio/hardware-configuration.nix +++ b/hosts/lio/hardware-configuration.nix @@ -40,10 +40,15 @@ ]; }; + fileSystems."/mnt/nvme1tb" = { + device = "/dev/disk/by-uuid/7ddb48bd-160c-4049-a4fa-a5ac2b6a5402"; + fsType = "ext4"; + }; + swapDevices = [ { device = "/.swapfile"; - size = 64 * 1024; # 16GB + size = 64 * 1024; # 64GB } ];