mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +00:00
31 lines
400 B
Nix
31 lines
400 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";
|
|
};
|
|
};
|
|
};
|
|
}
|