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