mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
19 lines
463 B
Nix
19 lines
463 B
Nix
{ 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}" \
|
|
'^\s*let direnv = (/nix/store/.*direnv.*/bin/direnv export json$'
|
|
'';
|
|
}
|