make btop module

This commit is contained in:
Schrottkatze 2025-03-10 14:32:28 +01:00
parent d0bb73d359
commit 0a22b2cc66
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
2 changed files with 12 additions and 0 deletions

11
modules/shell/btop.nix Normal file
View file

@ -0,0 +1,11 @@
{...}: {
home-manager.users.jade = {pkgs, ...}: {
programs.btop = {
enable = true;
settings = {
color_theme = "gruvbox_dark";
vim_keys = true;
};
};
};
}

View file

@ -9,6 +9,7 @@
./tty.nix
./git.nix
./mprocs.nix
./btop.nix
];
programs.mosh.enable = true;
}