dotfiles/common/users/homeModules/btop.nix

14 lines
278 B
Nix
Raw Normal View History

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