Files
nixos/Droidnix/generated/system/applications/terminal_shell/starship.nix
T
2026-03-07 23:35:04 +01:00

24 lines
403 B
Nix

{
config,
pkgs,
lib,
user,
...
}:
{
home-manager.users.${user.username} = {
programs.starship = {
enable = true;
# Starship settings (e.g., theme, modules)
settings = {
addNewline = false;
# Other settings...
};
# Enable Starship for specific shells
bash.enable = true;
zsh.enable = true;
fish.enable = true;
};
};
}