niksos/modules/tui/btop.nix

31 lines
812 B
Nix
Raw Normal View History

2023-10-13 21:04:24 +02:00
{
config,
config',
lib,
...
}: with lib; let
cfg = config.myOptions.programs.btop;
in {
options.myOptions.programs.btop.enable = mkEnableOption "enable btop";
config = mkIf cfg.enable {
home-manager.users.${config'.username} = {
programs.btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
update_ms = 100;
cpu_single_graph = true;
clock_format = "%X";
use_fstab = true;
io_mode = true;
net_sync = true;
net_iface = "enp4s0";
log_level = "WARNING";
};
};
2023-09-08 16:10:15 +02:00
};
};
}