From f3c60d05512726929175aecb03c17ec050966291 Mon Sep 17 00:00:00 2001 From: Vegard Bieker Matthey Date: Thu, 21 Aug 2025 14:21:39 +0200 Subject: [PATCH] add vegardbm Reviewed-on: https://git.pvv.ntnu.no/Drift/pvv-nixos-config/pulls/114 --- users/vegardbm.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 users/vegardbm.nix diff --git a/users/vegardbm.nix b/users/vegardbm.nix new file mode 100644 index 0000000..8e0cba9 --- /dev/null +++ b/users/vegardbm.nix @@ -0,0 +1,22 @@ +{ pkgs, ... }: +{ + users.users.vegardbm = { + isNormalUser = true; + description = "noe"; + extraGroups = [ + "wheel" + "drift" + "nix-builder-users" + ]; + packages = with pkgs; [ + btop + eza + neovim + ripgrep + tmux + ]; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDVA3HqEx3je6L1AC+bP8sTxu3ZTKvTCR0npCyOVAYK5 vbm@arch-xeon" + ]; + }; +}