2023-09-04 20:17:52 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
svc,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
partlabel,
|
|
|
|
mountpoint,
|
|
|
|
options,
|
|
|
|
fstype,
|
2023-09-04 20:17:52 +00:00
|
|
|
}:
|
|
|
|
let
|
2024-06-29 21:59:27 +00:00
|
|
|
inherit (liminix.services) oneshot;
|
2024-04-17 11:59:13 +00:00
|
|
|
device = "/dev/disk/by-partlabel/${partlabel}";
|
2024-06-09 21:37:45 +00:00
|
|
|
name = "mount.${lib.strings.sanitizeDerivationName (lib.escapeURL mountpoint)}";
|
2025-02-10 21:55:08 +00:00
|
|
|
options_string = if options == [ ] then "" else "-o ${lib.concatStringsSep "," options}";
|
2024-06-09 21:37:45 +00:00
|
|
|
controller = svc.uevent-rule.build {
|
|
|
|
serviceName = name;
|
|
|
|
symlink = device;
|
|
|
|
terms = {
|
|
|
|
partname = partlabel;
|
|
|
|
devtype = "partition";
|
|
|
|
};
|
2024-06-02 19:40:56 +00:00
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
oneshot {
|
2024-06-09 21:37:45 +00:00
|
|
|
inherit name;
|
|
|
|
timeout-up = 3600;
|
|
|
|
up = "mount -t ${fstype} ${options_string} ${device} ${mountpoint}";
|
|
|
|
down = "umount ${mountpoint}";
|
|
|
|
inherit controller;
|
2023-09-04 20:17:52 +00:00
|
|
|
}
|