depot/nixos/modules/programs/usbtop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
364 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
let
cfg = config.programs.usbtop;
in {
options = {
programs.usbtop.enable = lib.mkEnableOption "usbtop and required kernel module, to show estimated USB bandwidth";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
usbtop
];
boot.kernelModules = [
"usbmon"
];
};
}