NixToSee/modules/software/shells/shell.nix
Ranomier a5040dcc1b random stuff
- shell fixes
- noice function for nixos-configurations
- flake update
- random
2025-05-04 00:46:06 +02: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"
];
};
}