mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-10 03:19:13 +00:00
21 lines
318 B
Nix
21 lines
318 B
Nix
{
|
|
imports = [ ./eza.nix ./fish ];
|
|
|
|
home = { shellAliases = import ./aliases.nix; };
|
|
|
|
programs = {
|
|
zoxide = {
|
|
enable = true;
|
|
options = [ "--cmd" "j" ];
|
|
};
|
|
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
|
|
fzf.enable = true;
|
|
|
|
bat = { enable = true; };
|
|
};
|
|
}
|