add mtr to home-manager configs

This commit is contained in:
chaos 2024-07-24 16:32:28 +01:00
parent fdf073bf7f
commit d6c37557f9
No known key found for this signature in database

View file

@ -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)
]; ];
} }