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 = [ + "" + ]; + }; +}