diff --git a/common/users.nix b/common/users.nix index ab4d418..e1879dc 100644 --- a/common/users.nix +++ b/common/users.nix @@ -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")]; + }; }