From 519da170b6b22d6e403c98cb5b9018bf99e9b867 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Mon, 7 Sep 2020 12:46:50 +0200 Subject: [PATCH] feat: remove ntfs support --- hardware/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/base.nix b/hardware/base.nix index 537e765..3a8a721 100644 --- a/hardware/base.nix +++ b/hardware/base.nix @@ -11,7 +11,7 @@ allowDiscards = true; }; }; - boot.supportedFilesystems = [ "btrfs" "ntfs" ]; + boot.supportedFilesystems = [ "btrfs" ]; boot.kernelPackages = pkgs.linuxPackages_latest; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;