Files

51 lines
732 B
Nix
Raw Permalink Normal View History

2026-07-11 14:56:13 -04:00
{ config, pkgs, ... }:
{
home.username = "olive";
home.homeDirectory = "/olive";
home.packages = with pkgs; [
tor-browser
git
kitty
zsh
helix
];
programs.git = {
enable = true;
settings = {
user = {
name = "Lilac";
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";
};
};
home.sessionVariables = {
EDITOR = "hx";
};
programs.home-manager.enable = true;
home.stateVersion = "26.05";
}