393c2e72bd
Replace programs.zsh (powerlevel10k theme) with programs.fish and starship prompt integration. Fish provides autosuggestions and syntax highlighting out of the box, eliminating the need for separate plugins. https://claude.ai/code/session_01NS2hpapno51a1Ng7hWaQKy
22 lines
383 B
Nix
22 lines
383 B
Nix
{ ... }:
|
|
|
|
{
|
|
home.username = "chexit";
|
|
home.homeDirectory = "/home/chexit";
|
|
home.stateVersion = "25.11";
|
|
|
|
programs.fish = {
|
|
enable = true;
|
|
shellAliases = {
|
|
rebuild = "sudo nixos-rebuild switch --flake ~/nixos-config#chexit";
|
|
};
|
|
};
|
|
|
|
programs.starship = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|