dotfiles/config/user.nix
2024-10-20 04:02:11 -05:00

51 lines
981 B
Nix
Executable file

let
user0 = "nick";
user1 = "garnet";
user2 = "fallaryn";
user3 = "denise";
in {
inherit
user0
user1
user2
user3
;
user = {
"${user0}" = {
name = "Nick";
alias = "BRBWaffles";
email = {
address0 = "nickjhiebert@proton.me";
address1 = "thenutrivore@proton.me";
};
paths = {
path0 = "/home/${user0}/Files/Projects"; # Git path
};
sshKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9TmImDoYDpsW5VMFbOcuK3aH4TWRtx/xGxT3yUtEN nick@desktop"
];
};
"${user1}" = {
name = "Garnet";
email = {
address0 = "ninaeffler@gmail.com";
};
};
"${user2}" = {
name = "Fallaryn";
email = {
address0 = "staciesimonson@gmail.com";
};
sshKeys = [
];
};
"${user3}" = {
name = "Denise";
email = {
address0 = "denisehiebert@shaw.ca";
};
sshKeys = [
];
};
};
}