From 62e7f733193c9d1f6259b25d87cc1623fd8915c9 Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 11 Apr 2025 20:50:21 -0700 Subject: [PATCH] Updated sampledb-dev machine to have more HDD space --- hardware/sampledb.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/hardware/sampledb.nix b/hardware/sampledb.nix index c0058af..7a1702f 100644 --- a/hardware/sampledb.nix +++ b/hardware/sampledb.nix @@ -13,16 +13,21 @@ boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/8d1d0298-307f-4d9a-84f8-0434fafa0c55"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/8d1d0298-307f-4d9a-84f8-0434fafa0c55"; + fsType = "ext4"; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/4821-12F7"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; + fileSystems."/SampleDB" = { + device = "/dev/disk/by-uuid/37c4881b-932e-4a3c-9cfc-6b2c26a4c014"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/4821-12F7"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; swapDevices = [ ];