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