From 1178b3ee5372cdb3c426418bf690ca92765bd908 Mon Sep 17 00:00:00 2001 From: Avery Date: Sun, 9 Mar 2025 22:06:51 +0100 Subject: [PATCH] Create temporary partition for MH Wilds on totsugeki --- hosts/totsugeki/nixos/filesystems.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/totsugeki/nixos/filesystems.nix b/hosts/totsugeki/nixos/filesystems.nix index 2c9e693..3de447e 100644 --- a/hosts/totsugeki/nixos/filesystems.nix +++ b/hosts/totsugeki/nixos/filesystems.nix @@ -23,5 +23,9 @@ fsType = "ntfs"; options = [ "nofail" ]; }; + "/mnt/MHWildsTemp" = { + device = "/dev/disk/by-uuid/674312a5-9d19-4e06-99ce-1481f3b45acd"; + fsType = "ext4"; + }; }; }