2023-09-29 09:24:16 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
users.users.adriangl = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "(0_0)";
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"drift"
|
|
|
|
];
|
|
|
|
|
|
|
|
packages = with pkgs; [
|
2023-12-05 00:35:15 +01:00
|
|
|
eza
|
2023-09-29 09:24:16 +02:00
|
|
|
neovim
|
|
|
|
];
|
|
|
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFa5y7KyLn2tjxed1czMbyM5scnEpo9v/GfnhL/28ckM legolas"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|