This commit is contained in:
2026-07-12 08:20:56 -04:00
parent e0ec38d87d
commit 0f19a2b0b3
8 changed files with 70 additions and 88 deletions
+18 -24
View File
@@ -1,14 +1,11 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
home.username = "olive";
home.homeDirectory = "/olive";
home.username = "lilac";
home.homeDirectory = "/home/lilac";
home.packages = with pkgs; [
tor-browser
git
kitty
zsh
helix
];
@@ -16,33 +13,30 @@
programs.git = {
enable = true;
settings = {
user = {
name = "Lilac";
email = "lilac@grasswren.net";
};
core = {
editor = "hx";
};
init = {
defaultBranch = "main";
};
user.name = "Lilac";
user.email = "lilac@grasswren.net";
core.editor = "hx";
init.defaultBranch = "main";
};
};
programs.zsh = {
enable = true;
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ls = "ls -A";
};
};
shellAliases = {
ls = "ls -A";
};
programs.helix = {
enable = true;
};
home.sessionVariables = {
EDITOR = "hx";
EDITOR = "hx";
};
programs.home-manager.enable = true;
-13
View File
@@ -1,13 +0,0 @@
{ config, lib, pkgs, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
imports = [
./tools.nix
];
programs.home-manager.enable = true;
home.stateVersion = "26.05";
}
-38
View File
@@ -1,38 +0,0 @@
{ 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";
};
};
programs.helix = {
enable = true;
};
home.sessionVariables = {
EDITOR = "hx";
};
}