19 lines
336 B
Nix
19 lines
336 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
programs = {
|
||
|
fish.enable = true;
|
||
|
|
||
|
bash.interactiveShellInit = ''
|
||
|
shopt -s autocd globstar nullglob extglob checkwinsize
|
||
|
'';
|
||
|
|
||
|
starship = {
|
||
|
enable = true;
|
||
|
interactiveOnly = true;
|
||
|
settings.format = "$all";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
users.defaultUserShell = config.programs.fish.package;
|
||
|
}
|