11 lines
167 B
Nix
11 lines
167 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.btop = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
color_theme = "./dracula.theme";
|
|
theme_background = false;
|
|
};
|
|
};
|
|
} |