21 lines
476 B
Nix
21 lines
476 B
Nix
{
|
|
me = "mat";
|
|
users = {
|
|
mat = {
|
|
name = "mat ess";
|
|
email = "mat@mat.services";
|
|
sshKeys = [
|
|
# secretive
|
|
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKTVoMVtHSvosU9SCam4S5RTP0R2V09vqw5Xiuff+x4J7NtUxsBhqIrkPSfJHSbYlBKITX5RFyFBo5mtsTa95v0= mat"
|
|
];
|
|
};
|
|
mess = {
|
|
name = "Matthew Ess";
|
|
email = "mess@yelp.com";
|
|
sshKeys = [
|
|
# TODO: work secretive keys
|
|
];
|
|
};
|
|
};
|
|
}
|