Working on termonal stuff

This commit is contained in:
2026-03-07 23:12:22 +01:00
parent 73ff78f694
commit 44a485c9b8
3 changed files with 412 additions and 414 deletions
@@ -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;
};
};
}