mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 12:19:43 +01:00
931e610552
Recent versions of nushell uses a different configuration setup. This commit adjusts the module to match. Fixes #2952 Fixes #2837
30 lines
515 B
Nix
30 lines
515 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.nushell = {
|
|
enable = true;
|
|
|
|
configFile.text = ''
|
|
let $config = {
|
|
filesize_metric: false
|
|
table_mode: rounded
|
|
use_ls_colors: true
|
|
}
|
|
'';
|
|
|
|
envFile.text = ''
|
|
let-env FOO = 'BAR'
|
|
'';
|
|
};
|
|
|
|
test.stubs.nushell = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/nushell/config.nu \
|
|
${./config-expected.nu}
|
|
assertFileContent \
|
|
home-files/.config/nushell/env.nu \
|
|
${./env-expected.nu}
|
|
'';
|
|
}
|