From ed5f2cb13fdb1f9c4ce3827e14ad0c1b2cdc55b2 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 27 Jan 2024 19:15:28 +0100 Subject: [PATCH] epyc: add flokli account for 3-ish days Signed-off-by: Raito Bezarius --- modules/users/friends.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/users/friends.nix b/modules/users/friends.nix index 58620aa..068f799 100644 --- a/modules/users/friends.nix +++ b/modules/users/friends.nix @@ -34,6 +34,17 @@ in extraGroups = trustedFriendGroups; openssh.authorizedKeys.keyFiles = [ ./keys/niklas.keys ]; }; - + # Raito: Temporary account for flokli, disable when he's done with it. + flokli = { + isNormalUser = true; + home = "/home/flokli"; + shell = "/run/current-system/sw/bin/zsh"; + uid = 2003; + expires = "2024-02-01"; + extraGroups = trustedFriendGroups; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPTVTXOutUZZjXLB0lUSgeKcSY/8mxKkC0ingGK1whD2 flokli" + ]; + }; }; }