add nushell and carapace

This commit is contained in:
outfoxxed 2025-07-24 19:10:51 -07:00
parent f556374919
commit 8a54335ad1
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
3 changed files with 19 additions and 0 deletions

13
modules/shell/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, impurity, ... }: {
home-manager.users.${config.main-user} = { config, ... }: {
programs.nushell = {
enable = true;
configFile.text = "source ${impurity.link ./nushell.nu}";
};
programs.carapace = {
enable = true;
enableNushellIntegration = true;
};
};
}