add mtr to home-manager configs
This commit is contained in:
parent
fdf073bf7f
commit
d6c37557f9
|
@ -1,4 +1,11 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
nixosConfig ? null,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib.modules) mkIf;
|
||||||
|
in {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
|
@ -11,5 +18,6 @@
|
||||||
tcpdump
|
tcpdump
|
||||||
iftop
|
iftop
|
||||||
speedtest-cli
|
speedtest-cli
|
||||||
|
(mkIf (nixosConfig == null) mtr)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue