{ config, lib, pkgs, ... }: { home.username = "lilac"; home.homeDirectory = "/home/lilac"; home.packages = with pkgs; [ git zsh helix ]; imports = [ ../modules/ripping.nix ]; programs.git = { enable = true; settings = { user.name = "Lilac"; user.email = "lilac@grasswren.net"; core.editor = "hx"; init.defaultBranch = "main"; }; }; programs.zsh = { enable = true; enableCompletion = true; autosuggestion.enable = true; syntaxHighlighting.enable = true; shellAliases = { ls = "ls -A"; }; }; programs.helix = { enable = true; }; home.sessionVariables = { EDITOR = "hx"; }; programs.home-manager.enable = true; home.stateVersion = "26.05"; }