Working on termonal stuff
This commit is contained in:
@@ -1,23 +1,17 @@
|
||||
{ config, pkgs, lib, user, inputs, flakeRoot, ... }:
|
||||
{ config, pkgs, lib, user, ... }:
|
||||
{
|
||||
# Install Starship (optional, system-wide)
|
||||
environment.systemPackages = with pkgs; [ starship ];
|
||||
|
||||
# Home Manager configuration for Starship
|
||||
home-manager.users.${user.username} = {
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
# Enable for specific shells (e.g., bash, zsh, fish)
|
||||
# Starship settings (e.g., theme, modules)
|
||||
settings = {
|
||||
# Your Starship config here (e.g., theme, modules)
|
||||
addNewline = false;
|
||||
# Other settings...
|
||||
};
|
||||
# Enable shell integration (per-shell)
|
||||
shellIntegration = {
|
||||
bash.enable = true;
|
||||
zsh.enable = true;
|
||||
fish.enable = true;
|
||||
};
|
||||
# Enable Starship for specific shells
|
||||
bash.enable = true;
|
||||
zsh.enable = true;
|
||||
fish.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user