initial commit

This commit is contained in:
2026-07-11 14:56:13 -04:00
commit 26af7b2dcd
15 changed files with 684 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
{ 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";
}
+8
View File
@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
}
+34
View File
@@ -0,0 +1,34 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
git
zsh
helix
];
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";
};
};
home.sessionVariables = {
EDITOR = "hx";
};
}