dotfiles/common/users/homeModules/btop.nix

14 lines
286 B
Nix
Raw Normal View History

2024-11-26 17:01:58 -05:00
{pkgs, ...}: {
home = {
packages = with pkgs; [
btop
];
file = {
btop = {
recursive = true;
2024-11-26 17:20:47 -05:00
source = ../../../dotfiles/btop;
2024-11-26 17:01:58 -05:00
target = "./.config/btop";
};
2024-11-26 17:15:01 -05:00
};
};
2024-11-26 17:01:58 -05:00
}