1
0
Fork 0
puter/common/shell.nix

19 lines
336 B
Nix
Raw Normal View History

2025-05-18 01:08:10 +02:00
{ 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;
}