22 lines
282 B
Nix
22 lines
282 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
programs = {
|
|
fzf = {
|
|
enable = true;
|
|
tmux = {
|
|
enableShellIntegration = true;
|
|
};
|
|
};
|
|
nushell = {
|
|
enable = true;
|
|
};
|
|
zoxide = {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
};
|
|
}
|