From 84142331f4ea803c68aaad7f990243a9f12c7163 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Fri, 27 Sep 2024 17:15:51 -0400 Subject: [PATCH] add user --- common/users.nix | 8 ++++++++ 1 file changed, 8 insertions(+) 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")]; + }; }