niksos/modules/tui/btop.nix
jacekpoz 59febb2149
move the config' arg to a custom module (big)
shoutout to raf for pointing out how retarded this was
this was needed very much
2024-02-29 00:29:56 +01:00

30 lines
847 B
Nix

{
config,
lib,
...
}: with lib; let
cfg = config.myOptions.programs.btop;
username = config.myOptions.other.system.username;
in {
options.myOptions.programs.btop.enable = mkEnableOption "enable btop";
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
update_ms = 1000;
cpu_single_graph = true;
clock_format = "%X";
use_fstab = true;
io_mode = true;
net_sync = true;
net_iface = "enp4s0";
log_level = "WARNING";
};
};
};
};
}