Files
ccl-nixos-dotfiles/modules/cli/monitor/all.nix
2025-04-19 12:42:19 +08:00

16 lines
242 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all command line monitor tools";
optionPath = [
"cli"
"monitor"
"all"
];
config' = {
my.cli.monitor = {
btop.enable = true;
};
};
}