ooknet/home/modules/console/tools/btop.nix

14 lines
175 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.tools.btop;
in
{
config = mkIf cfg.enable {
programs.btop = {
enable = true;
};
};
}