mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
14 lines
No EOL
227 B
Nix
14 lines
No EOL
227 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.btop = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
color_theme = "dracula";
|
|
theme_background = false;
|
|
update_ms = 500;
|
|
};
|
|
};
|
|
|
|
home.packages = (with pkgs; [ nvtop-intel ]);
|
|
} |