1
0
mirror of https://github.com/nix-community/home-manager synced 2024-08-22 20:16:30 +02:00
home-manager/tests/modules/programs/nushell/example-settings.nix
Mika Naylor 58b8685e47
nushell: add shellAliases option
This allows nushell users to define shell aliases that are inserted
into nushell's `config.nu`.
2023-04-17 22:59:32 +02:00

41 lines
738 B
Nix

{ pkgs, ... }:
{
programs.nushell = {
enable = true;
configFile.text = ''
let $config = {
filesize_metric: false
table_mode: rounded
use_ls_colors: true
}
'';
envFile.text = ''
let-env FOO = 'BAR'
'';
shellAliases = {
"lsname" = "(ls | get name)";
"ll" = "ls -a";
};
};
test.stubs.nushell = { };
nmt.script = let
configDir = if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support/nushell"
else
"home-files/.config/nushell";
in ''
assertFileContent \
"${configDir}/config.nu" \
${./config-expected.nu}
assertFileContent \
"${configDir}/env.nu" \
${./env-expected.nu}
'';
}