10 lines
223 B
Nix
10 lines
223 B
Nix
|
{...}: {
|
||
|
imports = [./default.nix];
|
||
|
programs = {
|
||
|
nushell.enable = true;
|
||
|
direnv.enableNushellIntegration = true;
|
||
|
keychain.enableNushellIntegration = true;
|
||
|
starship.enableNushellIntegration = true;
|
||
|
};
|
||
|
}
|