forked from nix-community/home-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This enables nushell integration by default for direnv, similar to bash/zsh/fish. The slightly verbose way of setting this is to ensure that peoples' existing nushell configuration isn't overwritten, only appended to, as would be the case if we just used the integration example from the nushell docs: https://www.nushell.sh/cookbook/direnv.html Closes nix-community#3520
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
direnv-bash = ./bash.nix; | ||
direnv-nix-direnv = ./nix-direnv.nix; | ||
direnv-nushell = ./nushell.nix; | ||
direnv-stdlib = ./stdlib.nix; | ||
direnv-stdlib-and-nix-direnv = ./stdlib-and-nix-direnv.nix; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ pkgs, ... }: | ||
|
||
{ | ||
programs.nushell.enable = true; | ||
programs.direnv.enable = true; | ||
|
||
test.stubs.nushell = { }; | ||
|
||
nmt.script = let | ||
configFile = if pkgs.stdenv.isDarwin then | ||
"home-files/Library/Application Support/nushell/config.nu" | ||
else | ||
"home-files/.config/nushell/config.nu"; | ||
in '' | ||
assertFileExists "${configFile}" | ||
assertFileRegex "${configFile}" \ | ||
'let direnv = (/nix/store/.*direnv.*/bin/direnv export json | from json)' | ||
''; | ||
} |