mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
10 lines
185 B
Nix
10 lines
185 B
Nix
{
|
|
home.shell.enableNushellIntegration = true;
|
|
|
|
programs.nushell = {
|
|
configFile.text = ''
|
|
$env.config.show_banner = false
|
|
$env.config.edit_mode = "vi"
|
|
'';
|
|
};
|
|
}
|