nix-config/modules/home/shell/default.nix

31 lines
434 B
Nix
Raw Normal View History

2024-05-16 02:40:39 -04:00
{...}: {
2024-05-07 03:23:55 -04:00
imports = [
./fish.nix
./git.nix
./wezterm.nix
./macchina.nix
2024-05-16 02:40:39 -04:00
./nushell
2024-05-07 03:23:55 -04:00
];
programs = {
2024-05-16 02:40:39 -04:00
atuin = {
2024-05-07 03:23:55 -04:00
enable = true;
2024-05-16 02:40:39 -04:00
settings = {
inline_height = 20;
show_preview = true;
style = "compact";
2024-05-07 03:23:55 -04:00
};
};
2024-05-16 02:40:39 -04:00
bat = {
enable = true;
catppuccin.enable = true;
};
2024-05-07 03:23:55 -04:00
zoxide = {
enable = true;
options = ["--cmd" "cd"];
};
};
}