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

18 lines
No EOL
371 B
Nix

{pkgs, ...}: {
home = {
packages = with pkgs; [
warp-terminal
kitty
onefetch
hyfetch
neofetch
];
file = {
kitty = {
recursive = true;
source = ../dotfiles/kitty;
target = "./.config/kitty";
};
};
}
}