From 3568382402612943488e4136bdcd1fd3fc584855 Mon Sep 17 00:00:00 2001 From: quinm0 Date: Sat, 4 Apr 2026 12:55:47 -0400 Subject: [PATCH] add disk to server --- nix/qdhc.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nix/qdhc.nix b/nix/qdhc.nix index a84ab52..4bd2bca 100644 --- a/nix/qdhc.nix +++ b/nix/qdhc.nix @@ -30,6 +30,11 @@ options = [ "fmask=0077" "dmask=0077" ]; }; + fileSystems."/mnt/tmpMedia" = + { device = "/dev/disk/by-uuid/fa20e116-e04e-4f3e-bf5a-c2e2c1fad610"; + fsType = "ext4"; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/cf4cff49-15d7-4145-86c2-8be30e71fe4c"; } ]; @@ -79,4 +84,4 @@ users.users.qmoran.packages = with pkgs; [ nvtopPackages.nvidia ]; hardware.nvidia-container-toolkit.enable = true; virtualisation.docker.daemon.settings.features.cdi = true; -} \ No newline at end of file +}