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

18 lines
393 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;
};
};
}