18 lines
336 B
Nix
18 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;
|
|
}
|