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

18 lines
379 B
Nix

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