8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
21 lines
334 B
Nix
21 lines
334 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.usbtop;
|
|
in {
|
|
options = {
|
|
programs.usbtop.enable = mkEnableOption "usbtop and required kernel module";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
usbtop
|
|
];
|
|
|
|
boot.kernelModules = [
|
|
"usbmon"
|
|
];
|
|
};
|
|
}
|