From ea74128e3194b0b6d9f707bce0435d6b58c66b06 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 22 Aug 2024 15:47:59 +0200 Subject: [PATCH] feat: add jmarquet account for the next week Signed-off-by: Raito Bezarius --- modules/users/friends.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/users/friends.nix b/modules/users/friends.nix index 932660f..97227be 100644 --- a/modules/users/friends.nix +++ b/modules/users/friends.nix @@ -80,5 +80,15 @@ in "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII3tjB4KYDok3KlWxdBp/yEmqhhmybd+w0VO4xUwLKKV" ]; }; + # Raito: Temporary account for the next week, for VM testing in the context of the systemd-hardening project. + jmarquet = { + isNormalUser = true; + home = "/home/jmarquet"; + uid = 2008; + expires = "2024-08-30"; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFe4tx0+lNX2w7kG94c9u7U0wHuOc2A6zpHcbyAs+w/d thejohncrafter@system76-pc" + ]; + }; }; }