There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
34 lines
748 B
Nix
34 lines
748 B
Nix
{
|
|
liminix,
|
|
serviceFns,
|
|
lib,
|
|
}:
|
|
{
|
|
interface,
|
|
family,
|
|
address,
|
|
prefixLength,
|
|
}:
|
|
let
|
|
inherit (liminix.services) oneshot;
|
|
# rather depending on the assumption that nobody will
|
|
# ever add two addresses which are the same but with different
|
|
# prefixes, or the same but different protocols
|
|
name = "${interface.name}.a.${address}";
|
|
up = ''
|
|
dev=$(output ${interface} ifname)
|
|
ip address add ${address}/${toString prefixLength} dev $dev
|
|
(in_outputs ${name}
|
|
echo ${address} > address
|
|
echo ${toString prefixLength} > prefix-length
|
|
echo ${family} > family
|
|
echo $dev > ifname
|
|
)
|
|
'';
|
|
in
|
|
oneshot {
|
|
inherit name up;
|
|
down = "true"; # this has been broken for ~ ages
|
|
dependencies = [ interface ];
|
|
}
|