2023-08-31 22:24:23 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
target,
|
|
|
|
via,
|
|
|
|
interface ? null,
|
|
|
|
metric,
|
2023-08-31 22:24:23 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (liminix.services) oneshot;
|
2023-09-13 17:01:50 +00:00
|
|
|
with_dev = if interface != null then "dev $(output ${interface} ifname)" else "";
|
2024-06-20 09:15:54 +00:00
|
|
|
target_hash = builtins.substring 0 12 (builtins.hashString "sha256" target);
|
|
|
|
via_hash = builtins.substring 0 12 (builtins.hashString "sha256" via);
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
oneshot {
|
|
|
|
name = "route-${target_hash}-${
|
|
|
|
builtins.substring 0 12 (
|
|
|
|
builtins.hashString "sha256" "${via_hash}-${if interface != null then interface.name else ""}"
|
|
|
|
)
|
|
|
|
}";
|
2023-08-31 22:24:23 +00:00
|
|
|
up = ''
|
|
|
|
ip route add ${target} via ${via} metric ${toString metric} ${with_dev}
|
|
|
|
'';
|
|
|
|
down = ''
|
|
|
|
ip route del ${target} via ${via} ${with_dev}
|
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
dependencies = [ ] ++ lib.optional (interface != null) interface;
|
2023-08-31 22:24:23 +00:00
|
|
|
}
|