marleyos/modules/nixos/mounts/automounts/default.nix

18 lines
297 B
Nix
Raw Normal View History

2025-02-22 01:52:12 +00:00
{
lib,
config,
...
}: let
cfg = config.marleyos.mounts.automounts;
in {
options.marleyos.mounts.automounts.enable = lib.mkEnableOption "automounts";
config = lib.mkIf cfg.enable {
boot.supportedFilesystems = {
ntfs = true;
};
services.udisks2.enable = true;
};
}