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