314 current 1970-01-01 01:00:00 23.11.20240514.9ddcaff 6.1.90 *

This commit is contained in:
2024-05-18 21:20:50 +02:00
parent f3eacd23c3
commit 63563d6537
7 changed files with 237 additions and 176 deletions

View File

@ -0,0 +1,19 @@
{
lib,
config,
...
}: let
cfg = config.myPrograms.udiskie;
in {
options = {
myPrograms.udiskie.enable = lib.mkEnableOption "auto media mounting";
};
config = lib.mkIf cfg.enable {
services.udiskie = {
enable = true;
automount = true;
notify = true;
};
};
}