mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
18 lines
379 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|