Add support for exfat.

This commit is contained in:
Tom Alexander
2026-08-09 15:41:35 -04:00
parent 3aefe7c0b5
commit e2ed4013c5
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me = {
exfat.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install exfat.";
};
};
config = lib.mkIf config.me.exfat.enable {
# boot.supportedFilesystems = [ "exfat" ];
environment.systemPackages = with pkgs; [
exfatprogs
];
};
}