From cf669ab62a5376685ff7c10d7e5fc0bf206b47c2 Mon Sep 17 00:00:00 2001 From: noe Date: Sun, 17 Dec 2023 17:03:16 -0500 Subject: [PATCH] aerial: mount external nvme --- nixos/hosts/aerial/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/hosts/aerial/default.nix b/nixos/hosts/aerial/default.nix index 3e3364d..b3915c2 100644 --- a/nixos/hosts/aerial/default.nix +++ b/nixos/hosts/aerial/default.nix @@ -18,4 +18,9 @@ networking.hostName = "aerial"; system.stateVersion = "24.05"; + + fileSystems."/mnt/wumbo" = { + device = "/dev/disk/by-uuid/804c5fa2-cf78-4c18-a956-a5b60ea33619"; + fsType = "ext4"; + }; }