Files
Chickadee/home/lilac.nix
T

49 lines
769 B
Nix
Raw Normal View History

2026-07-12 08:20:56 -04:00
{ config, lib, pkgs, ... }:
2026-07-11 14:56:13 -04:00
{
2026-07-12 08:20:56 -04:00
home.username = "lilac";
home.homeDirectory = "/home/lilac";
2026-07-11 14:56:13 -04:00
home.packages = with pkgs; [
git
zsh
helix
];
2026-07-17 22:30:24 -04:00
imports = [
./modules/ripping.nix
];
2026-07-11 14:56:13 -04:00
programs.git = {
enable = true;
settings = {
2026-07-12 08:20:56 -04:00
user.name = "Lilac";
user.email = "lilac@grasswren.net";
core.editor = "hx";
init.defaultBranch = "main";
2026-07-11 14:56:13 -04:00
};
};
programs.zsh = {
2026-07-12 08:20:56 -04:00
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
2026-07-11 14:56:13 -04:00
2026-07-12 08:20:56 -04:00
shellAliases = {
ls = "ls -A";
};
};
2026-07-11 14:56:13 -04:00
2026-07-12 08:20:56 -04:00
programs.helix = {
enable = true;
2026-07-11 14:56:13 -04:00
};
home.sessionVariables = {
2026-07-12 08:20:56 -04:00
EDITOR = "hx";
2026-07-11 14:56:13 -04:00
};
programs.home-manager.enable = true;
home.stateVersion = "26.05";
}