Add more packages, speedtest-cli on upstreams

This commit is contained in:
Daniel Poelzleithner 2021-05-31 13:44:28 +02:00
parent 334b9f1f8e
commit ec5bed6e65
3 changed files with 23 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ config, lib, modulesPath, ... }:
{ config, lib, modulesPath, pkgs, ... }:
{
imports = [

View File

@ -52,6 +52,10 @@ in
'';
}) upstreamInterfaces;
environment.systemPackages = lib.optionals enabled [
pkgs.speedtest-cli
];
networking.nat = lib.optionalAttrs enabled {
enable = true;
internalInterfaces = [ "core" ];

View File

@ -31,12 +31,25 @@
};
environment.systemPackages = with pkgs; [
vim screen git wget psmisc
ethtool tcpdump iputils
mtr traceroute
iptables bridge-utils conntrack-tools
bmon iftop speedtest-cli
bmon
bridge-utils
conntrack-tools
dhcpcd
ethtool
git
iftop
iperf
iptables
iptraf-ng
iputils
mtr
psmisc
screen
speedtest-cli
tcpdump
traceroute
vim
wget
];
networking.hostName = hostName;