Add user eirikwit #22

Merged
eirikwit merged 1 commits from add-eirikwit into main 2023-12-10 02:16:44 +01:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 8a0ebe761e - Show all commits

18
users/eirikwit.nix Normal file
View File

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
users.users.eirikwit = {
isNormalUser = true;
extraGroups = [
"wheel"
"drift"
];
packages = with pkgs; [
micro
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGZusOSiUVSMjrvNdUq4R91Gafq4XVs9C77Zt+LMPhCU eirikw@live.no"
];
};
}