niksos/modules/tui/btop.nix

34 lines
886 B
Nix
Raw Normal View History

2023-10-13 21:04:24 +02:00
{
config,
lib,
...
2024-05-05 12:38:40 +02:00
}: let
2024-07-15 23:18:25 +02:00
cfg = config.poz.programs.btop;
inherit (config.poz.other.system) username;
2024-05-05 12:38:40 +02:00
2024-07-25 11:45:44 +02:00
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
2023-10-13 21:04:24 +02:00
in {
2024-07-15 23:18:25 +02:00
options.poz.programs.btop.enable = mkEnableOption "btop";
2023-10-13 21:04:24 +02:00
config = mkIf cfg.enable {
home-manager.users.${username} = {
2023-10-13 21:04:24 +02:00
programs.btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
2024-02-01 13:41:24 +01:00
update_ms = 1000;
2023-10-13 21:04:24 +02:00
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
};
};
}