Configure nushell

This commit is contained in:
Alexander
2025-08-03 23:21:58 +02:00
parent 3608ae4fc3
commit b0c2bd1594
8 changed files with 77 additions and 7 deletions
+2
View File
@@ -3,5 +3,7 @@
{
imports = [
./kanshi
./eza
./direnv
];
}
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
programs.direnv = {
enable = true;
enableNushellIntegration = config.dov.shell.nu.enable;
enableZshIntegration = config.dov.shell.zsh.enable;
};
}
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
programs.eza = {
enable = true;
git = true;
enableZshIntegration = config.dov.shell.zsh.enable;
enableNushellIntegration = config.dov.shell.nu.enable;
};
}