From 649c21de01188649138ac7b747d85e88c5f764e3 Mon Sep 17 00:00:00 2001 From: Albert Date: Thu, 14 Aug 2025 18:08:43 +0200 Subject: [PATCH] added user alb --- users/alb.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 users/alb.nix diff --git a/users/alb.nix b/users/alb.nix new file mode 100644 index 0000000..d5e03b6 --- /dev/null +++ b/users/alb.nix @@ -0,0 +1,23 @@ +{ pkgs, ... }: +{ + users.users.alb = { + isNormalUser = true; + extraGroups = [ "wheel" "drift" "nix-builder-users" ]; + + packages = with pkgs; [ + htop + neovim + ripgrep + fd + tmux + ]; + + shell = pkgs.zsh; + + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICheSCAxsYc/6g8hq2lXXHoUWPjWvntzzTA7OhG8waMN albert@Arch" + ]; + }; + +} +