dotfiles/common/users/homeModules/btop.nix
2024-11-26 17:01:58 -05:00

14 lines
No EOL
278 B
Nix

{pkgs, ...}: {
home = {
packages = with pkgs; [
btop
];
file = {
btop = {
recursive = true;
source = ../dotfiles/btop;
target = "./.config/btop";
};
}
}
}