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

14 lines
179 B
Nix

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