From e38d822ef1ee341dcec30c596ae973ffa52f240f Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Wed, 4 Feb 2026 20:47:53 +0100 Subject: [PATCH] mount external ssd --- hosts/nixos/nfss/system.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/nixos/nfss/system.nix b/hosts/nixos/nfss/system.nix index b8f9a72..162fa6b 100644 --- a/hosts/nixos/nfss/system.nix +++ b/hosts/nixos/nfss/system.nix @@ -87,11 +87,19 @@ ]; }; + # USB SSD mount + fileSystems."/mnt/essd" = { + device = "/dev/disk/by-id/usb-NVME_USB_3.2_0123456789ABC-0:0-part2"; + fsType = "exfat"; + options = [ "nofail" "x-systemd.device-timeout=5s" ]; + }; + # Host-specific packages environment.systemPackages = with pkgs; [ smartmontools zfs intel-gpu-tools + exfatprogs ]; # ZFS services configuration