17 lines
297 B
Nix
17 lines
297 B
Nix
{
|
|
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;
|
|
};
|
|
}
|