mirror of
https://github.com/stapelberg/router7.git
synced 2025-09-26 19:11:16 +08:00
12 lines
128 B
Nix
12 lines
128 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
dnsmasq
|
|
dig
|
|
ndisc6
|
|
nftables
|
|
];
|
|
}
|