delete unused functoins in liminix-tools

This commit is contained in:
Daniel Barlow
2023-08-21 19:29:00 +01:00
parent f4ad4d3ce1
commit 2ad203ce1f
2 changed files with 0 additions and 72 deletions

View File

@@ -37,13 +37,6 @@ in {
} // {
inherit (interface) device;
};
udhcpc = callPackage ./udhcpc.nix {};
odhcpc = interface: { ... } @ args: longrun {
name = "${interface.device}.odhcp";
run = "odhcpcd ${interface.device}";
};
dnsmasq = callPackage ./dnsmasq.nix {};
hostapd = callPackage ./hostapd.nix {};
route = { name, target, via, dependencies, dev ? null }:
let with_dev = if dev != null then "dev ${dev}" else "";
in oneshot {