From f0c6241b4aaffdf5983b038ce4e70724453e2507 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Fri, 27 Jan 2023 18:02:51 -0800 Subject: [PATCH] Support mounting NTFS partitions on desktop --- hosts/desktop/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 97ffb2f..cd8410a 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -29,4 +29,7 @@ useOSProber = true; }; }; + + # Support mounting NTFS partition + boot.supportedFilesystems = [ "ntfs" ]; }