Add btop configuration
This commit is contained in:
parent
d4c1cebada
commit
061dd39ab6
2 changed files with 15 additions and 0 deletions
14
home-manager/modules/shell/btop.nix
Normal file
14
home-manager/modules/shell/btop.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
color_theme = "Dracula";
|
||||
theme_background = false;
|
||||
truecolor = true;
|
||||
shown_boxes = "proc cpu mem net gpu0";
|
||||
update_ms = 100;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -4,5 +4,6 @@
|
|||
./zsh.nix
|
||||
./starship.nix
|
||||
./konsole.nix
|
||||
./btop.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue