14 lines
257 B
Nix
14 lines
257 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "martin";
|
|
home.homeDirectory = "/Users/martin";
|
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
programs.git = {
|
|
userName = "Martin";
|
|
userEmail = "git@pander-on.de";
|
|
};
|
|
}
|