add nushell and carapace
This commit is contained in:
parent
f556374919
commit
8a54335ad1
3 changed files with 19 additions and 0 deletions
13
modules/shell/default.nix
Normal file
13
modules/shell/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue