dotfiles/common/users/homeModules/terminal.nix

19 lines
379 B
Nix
Raw Normal View History

2024-11-26 17:01:58 -05:00
{pkgs, ...}: {
home = {
packages = with pkgs; [
warp-terminal
kitty
onefetch
hyfetch
neofetch
];
file = {
kitty = {
recursive = true;
2024-11-26 17:20:47 -05:00
source = ../../../dotfiles/kitty;
2024-11-26 17:01:58 -05:00
target = "./.config/kitty";
};
};
2024-11-26 20:17:02 -05:00
};
}