From 0344e3f622890361731d494fcad3573a657c63dd Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Sun, 19 Jan 2020 10:46:39 +0100 Subject: [PATCH] feat: add ntfs support --- common/base-hardware.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/common/base-hardware.nix b/common/base-hardware.nix index 19d2cda..80290ea 100644 --- a/common/base-hardware.nix +++ b/common/base-hardware.nix @@ -7,6 +7,7 @@ allowDiscards = true; }; }; + boot.supportedFilesystems = [ "ntfs" ]; boot.kernelPackages = pkgs.linuxPackages_latest; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;