change default shell to fish + starship

This commit is contained in:
xunuwu 2025-03-09 19:44:02 +01:00
parent 911f97e351
commit d08f274800
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 23 additions and 2 deletions

View file

@ -26,6 +26,7 @@
core.locale
nix.default
programs.zsh
programs.fish
core.tools
core.compat
core.boot

View file

@ -2,7 +2,7 @@
users.users.xun = {
isNormalUser = true;
initialPassword = "nixos";
shell = pkgs.zsh;
shell = pkgs.fish;
extraGroups = [
"wheel"
"input"

View file

@ -0,0 +1,5 @@
{
programs.fish = {
enable = true;
};
}