From 620e41695ee6ae972534988877922f6514f94b94 Mon Sep 17 00:00:00 2001 From: Adrian Gunnar Lauterer Date: Sat, 2 Dec 2023 20:31:19 +0100 Subject: [PATCH] add user richara --- users/richarah.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 users/richarah.nix diff --git a/users/richarah.nix b/users/richarah.nix new file mode 100644 index 00000000..03238b12 --- /dev/null +++ b/users/richarah.nix @@ -0,0 +1,19 @@ +{ pkgs, ... }: +{ + users.users.richarah = { + isNormalUser = true; + description = ""; + extraGroups = [ + "wheel" + "drift" + ]; + + packages = with pkgs; [ + docker + ]; + + openssh.authorizedKeys.keys = [ + "" + ]; + }; +}