mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
13 lines
211 B
Nix
13 lines
211 B
Nix
|
|
{...}: {
|
||
|
|
user.home-manager.programs.btop = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
settings = {
|
||
|
|
color_theme = "TTY";
|
||
|
|
theme_background = false;
|
||
|
|
update_ms = 500;
|
||
|
|
rounded_corners = false;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|