Files
nixos-dotfiles/modules/cmd/monitor/all.nix
2025-04-13 15:09:14 +08:00

16 lines
242 B
Nix

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