11 lines
171 B
Nix
11 lines
171 B
Nix
{ inputs, ... }: {
|
|
# Btop settings
|
|
programs.btop = {
|
|
enable = true;
|
|
settings = {
|
|
color_theme = "catppuccin_frappe";
|
|
vim_keys = true;
|
|
};
|
|
};
|
|
}
|