home: move zoxide to default
This commit is contained in:
parent
00b1619eba
commit
e083de0ba6
3 changed files with 11 additions and 12 deletions
|
@ -21,4 +21,3 @@ name | description
|
||||||
`wezterm` | my terminal of choice
|
`wezterm` | my terminal of choice
|
||||||
`zathura` | pdf viewer
|
`zathura` | pdf viewer
|
||||||
`zellij` | terminal multiplexer
|
`zellij` | terminal multiplexer
|
||||||
`zoxide` | smarter cd command
|
|
||||||
|
|
|
@ -6,12 +6,14 @@
|
||||||
./helix
|
./helix
|
||||||
./git
|
./git
|
||||||
./lazygit
|
./lazygit
|
||||||
./zoxide
|
./lf
|
||||||
./direnv
|
./direnv
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
croc
|
croc
|
||||||
|
exa
|
||||||
|
ripgrep
|
||||||
lazydocker
|
lazydocker
|
||||||
yt-dlp
|
yt-dlp
|
||||||
nfs-utils
|
nfs-utils
|
||||||
|
@ -52,4 +54,11 @@
|
||||||
+ "/Catppuccin-mocha.tmTheme");
|
+ "/Catppuccin-mocha.tmTheme");
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
enableNushellIntegration = true;
|
||||||
|
options = [
|
||||||
|
"--cmd cdd"
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{...}: {
|
|
||||||
programs.zoxide = {
|
|
||||||
enable = true;
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
options = [
|
|
||||||
"--cmd cdd"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue