NixToSee/modules/software/shell.nix
2025-01-13 03:14:46 +01:00

16 lines
304 B
Nix

{pkgs, ...}: {
# everyone should use zsh xD
users.defaultUserShell = pkgs.zsh;
# Prevent the new user dialog in zsh
# supports many shell so it lives here
programs.starship = {
enable = true;
settings = {
add_newline = false;
};
presets = [
"jetpack"
];
};
}