From 7a258097cf7ded0e8e7068c349b3c75da3632c3a Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Tue, 18 Apr 2023 12:33:38 +0100 Subject: [PATCH] Add NTFS support --- system/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/system/configuration.nix b/system/configuration.nix index 9c1be58..b68446b 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -18,6 +18,7 @@ in # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.supportedFilesystems = [ "ntfs" ]; networking.hostName = "ritchie"; networking.networkmanager.enable = true;