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; [
|
||||
curl
|
||||
wget
|
||||
|
@ -11,5 +18,6 @@
|
|||
tcpdump
|
||||
iftop
|
||||
speedtest-cli
|
||||
(mkIf (nixosConfig == null) mtr)
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue