mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-23 12:42:18 +00:00
24 lines
372 B
Nix
24 lines
372 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;
|
|
config = { theme = "gruvbox-dark"; };
|
|
};
|
|
};
|
|
}
|