427d756f54
- flake.nix: new entrypoint using nixpkgs-unstable + home-manager input; builds as nixosConfigurations.chexit (nixos-rebuild switch --flake .#chexit) - home.nix: Home Manager config for user chexit with zsh (p10k theme, autosuggestion, syntax highlighting, completion) - shell.nix: stripped to system-level programs.zsh.enable only; user-specific zsh config moved to home.nix https://claude.ai/code/session_01JwjdjwvgMGW4TcpYi4MZ6n
20 lines
417 B
Nix
20 lines
417 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "chexit";
|
|
home.homeDirectory = "/home/chexit";
|
|
home.stateVersion = "25.11";
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
initExtra = ''
|
|
source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
|
|
'';
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|