27 lines
505 B
Nix
27 lines
505 B
Nix
{ user, home }:
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home-manager.users.${user} = {
|
|
programs.btop.settings.color_theme = "matugen";
|
|
|
|
theme = {
|
|
template.".config/btop/themes/matugen.theme".source = ./theme.theme;
|
|
|
|
reloadExtraConfig = "${
|
|
lib.meta.getExe (
|
|
pkgs.writeShellApplication {
|
|
name = "reload-btop";
|
|
runtimeInputs = with pkgs; [ procps ];
|
|
text = "exec pkill btop -SIGUSR2";
|
|
}
|
|
)
|
|
} &";
|
|
};
|
|
};
|
|
}
|