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 +}