dotfiles/config/users/config/user0.nix

26 lines
549 B
Nix
Raw Normal View History

2024-11-10 01:29:37 -06:00
{user0}: let
2025-01-08 19:06:14 -06:00
inherit
user0
;
2024-11-10 01:29:37 -06:00
in {
name = "Nick";
aliases = {
name0 = "BRBWaffles";
name1 = "brbwaffles";
name2 = "Nutrivore";
name3 = "nutrivore";
2024-12-13 16:21:25 -06:00
name4 = "upRootNutrition";
2024-11-10 01:29:37 -06:00
};
email = {
address0 = "nickjhiebert@proton.me";
address1 = "thenutrivore@proton.me";
2024-12-13 16:21:25 -06:00
address2 = "nick@uprootnutrition.com";
2024-11-10 01:29:37 -06:00
};
paths = {
path0 = "/home/${user0}/Files/Projects"; # Git path
};
sshKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9TmImDoYDpsW5VMFbOcuK3aH4TWRtx/xGxT3yUtEN nick@desktop"
];
}