From 06651622b53ef962feafa0c2d7bb9934f561d6c3 Mon Sep 17 00:00:00 2001 From: Random936 Date: Wed, 17 Jul 2024 18:26:55 -0700 Subject: [PATCH] Added secondary drive to hardware config --- hardware/sampledb.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hardware/sampledb.nix b/hardware/sampledb.nix index ea855b1..8c0b765 100644 --- a/hardware/sampledb.nix +++ b/hardware/sampledb.nix @@ -13,10 +13,15 @@ boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/bc530c66-1e41-4c32-9ea0-e9e644677300"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/bc530c66-1e41-4c32-9ea0-e9e644677300"; + fsType = "ext4"; + }; + + fileSystems."/mnt/sampledb" = { + device = "/dev/disk/by-uuid/9d0bc50c-7382-4085-a3ea-5bc0fb52c1f8"; + fsType = "ext4"; + }; swapDevices = [ ];