19 lines
284 B
Nix
19 lines
284 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options = {
|
|
udiskie.enable =
|
|
lib.mkEnableOption "enable udiskie";
|
|
};
|
|
config = lib.mkIf config.udiskie.enable {
|
|
services.udiskie = {
|
|
enable = true;
|
|
automount = false;
|
|
notify = true;
|
|
tray = "auto";
|
|
};
|
|
};
|
|
}
|