12 lines
229 B
Nix
12 lines
229 B
Nix
{ ... }:
|
|
{
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
|
|
programs.git = {
|
|
userEmail = "evie@xenia.me.uk";
|
|
};
|
|
}
|