This commit is contained in:
Ezri Zhu 2024-09-27 17:15:51 -04:00
parent 70a2c27bbf
commit 84142331f4
Signed by: ezri
SSH key fingerprint: SHA256:PjS2hKMfl3gJ5Furjjq+kXa4ZvS1c0gb4/djAxxAf6c

View file

@ -32,6 +32,7 @@
isNormalUser = true;
shell = pkgs.zsh;
homeMode = "755";
linger = true;
openssh.authorizedKeys.keyFiles = [(builtins.fetchurl "https://ezri.pub")];
};
users.users.melody = {
@ -110,4 +111,11 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC/RsyBWkCZuVUC5ADDRn9b/KM8vC3h3dPAEnCMOhLVR pubNIX"
];
};
users.users.easrng = {
uid = 2014;
isNormalUser = true;
linger = true;
homeMode = "755";
openssh.authorizedKeys.keyFiles = [(builtins.fetchurl "https://github.com/easrng.keys")];
};
}