From aaef2d8a4b7c2cd3ffd312a308781d649e45d106 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sat, 27 Jul 2024 15:30:24 -0400 Subject: [PATCH] system/pc: enable exfat --- system/profile/pc.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/profile/pc.nix b/system/profile/pc.nix index 498497d..17cb3d8 100644 --- a/system/profile/pc.nix +++ b/system/profile/pc.nix @@ -32,6 +32,11 @@ in }; }; + # enable filesystems + boot.supportedFilesystems = { + exfat = mkDefault true; + }; + # probably unnecessary, this will be enabled by whatever session i use # Enable the X11 windowing system. # services.xserver.enable = true;