added adriangl to users

This commit is contained in:
Adrian Gunnar Lauterer 2023-09-29 09:24:16 +02:00
parent 6fd71598cb
commit faf49bb176
1 changed files with 20 additions and 0 deletions

20
users/adriangl.nix Normal file
View File

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
users.users.adriangl = {
isNormalUser = true;
description = "👁";
extraGroups = [
"wheel"
"drift"
];
packages = with pkgs; [
exa
neovim
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFa5y7KyLn2tjxed1czMbyM5scnEpo9v/GfnhL/28ckM legolas"
];
};
}