nixfiles/profiles/home-manager/dev/all/network.nix

23 lines
273 B
Nix
Raw Normal View History

2024-07-24 16:32:28 +01:00
{
pkgs,
lib,
...
2024-07-24 16:34:58 +01:00
} @ inputs: let
2024-07-24 16:32:28 +01:00
inherit (lib.modules) mkIf;
in {
2021-12-26 14:21:54 +00:00
home.packages = with pkgs; [
curl
wget
dig
whois
dnsutils
rsync
openssh
nmap
tcpdump
iftop
speedtest-cli
2024-07-24 16:34:58 +01:00
(mkIf (!(inputs ? nixosConfig)) mtr)
];
}