1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/modules/network.nix
2022-09-27 22:07:46 +02:00

21 lines
238 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
{
config = {
programs = {
iftop = {
enable = true;
};
iotop = {
enable = true;
};
mtr = {
enable = true;
};
};
};
}