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 # Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; lib.mkMerge [
[
agenix agenix
android-file-transfer android-file-transfer
bitwarden-cli bitwarden-cli
@@ -50,9 +51,12 @@
nano nano
pciutils pciutils
pwgen pwgen
tcptrack
transcrypt transcrypt
unzip unzip
wget wget
]
(lib.optional pkgs.stdenv.isLinux [
tcptrack
])
]; ];
} }