tcptrack is Linux only

This commit is contained in:
Greg Hellings
2024-03-26 14:00:21 -05:00
committed by greg-compass
parent a61b23c5f4
commit 173b24844d
+6 -2
View File
@@ -31,7 +31,8 @@
};
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; lib.mkMerge [
[
agenix
android-file-transfer
bitwarden-cli
@@ -50,9 +51,12 @@
nano
pciutils
pwgen
tcptrack
transcrypt
unzip
wget
]
(lib.optional pkgs.stdenv.isLinux [
tcptrack
])
];
}