updates again

Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
This commit is contained in:
2024-11-19 10:49:50 -05:00
parent a2ab0fce66
commit 239fba826b
10 changed files with 325 additions and 46 deletions

View File

@@ -0,0 +1,21 @@
{
pkgs,
config,
...
}: {
programs = {
fzf = {
enable = true;
tmux = {
enableShellIntegration = true;
};
};
nushell = {
enable = true;
};
zoxide = {
enable = true;
enableNushellIntegration = true;
};
};
}