18 lines
493 B
Nix
18 lines
493 B
Nix
# 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";
|
|
};
|
|
}
|