From e2e4b0842aeef34523da5fa1bd833ea7d6e84e1b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 21 Sep 2022 10:12:25 +0800 Subject: [PATCH] nixbld: add yuk account --- nixbld-etc-nixos/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixbld-etc-nixos/configuration.nix b/nixbld-etc-nixos/configuration.nix index 61a154f..575c6b8 100644 --- a/nixbld-etc-nixos/configuration.nix +++ b/nixbld-etc-nixos/configuration.nix @@ -381,6 +381,13 @@ in "ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBGtaB32Ri1O7zRVG+1ADXmhwbK0r8R+c5W1RJd7cab5O9jp10wI+0JArFgK8u4m9oaR1rrVy4ym8wWMNu8vGKVTgyK+6UK87qTD96pnzwTyvzKCMOIHVBAPsnVfdOSKXLQ==" ]; }; + users.extraUsers.yuk = { + isNormalUser = true; + extraGroups = ["afws"]; + openssh.authorizedKeys.keys = [ + "ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBON6eEML7La1TVKeitvPKpEb+1oqiRZEowILLtNHeUM4l15mAwPK00gZXjdDxq+dTHUjPhRNn8Y4fMPdcCDo/pMD8TsLGzi/p7xh89oPEwJPODWfJcp9pR7fPkuoZV/Vlg==" + ]; + }; users.extraUsers.nix = { isNormalUser = true; };