Files
gooberos/modules/base/filesystems.nix
2026-05-24 13:09:09 +02:00

10 lines
143 B
Nix

{ pkgs, ... }:
{
boot.supportedFilesystems = [
"exfat"
];
environment.systemPackages = with pkgs; [
exfat
];
}