chore: initial commit

This commit is contained in:
2026-07-05 15:40:35 +02:00
commit aee4d0aa15
12 changed files with 940 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Example home identity — the per-user placeholders that a real inventory fills
# in. Imported alongside the generic homeModules.default (see flake.nix).
{ ... }:
{
home.username = "user";
home.homeDirectory = "/home/user";
home.stateVersion = "26.05";
# Git identity. Set to your own; leaks into commit authorship anyway, so it
# belongs with the person, not the shared module.
programs.git.settings.user = {
name = "Example User";
email = "user@example.com";
};
}