mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
15 lines
196 B
Nix
Executable file
15 lines
196 B
Nix
Executable file
{ user1 }:
|
|
let
|
|
inherit
|
|
user1
|
|
;
|
|
in
|
|
{
|
|
name = "Garnet";
|
|
email = {
|
|
address0 = "ninaeffler@gmail.com";
|
|
};
|
|
paths = {
|
|
path0 = "/home/${user1}/Files/Projects"; # Git path
|
|
};
|
|
}
|