mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2024-12-04 19:40:07 +01:00
19 lines
327 B
Nix
19 lines
327 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.users.eirikwit = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"drift"
|
|
];
|
|
|
|
packages = with pkgs; [
|
|
micro
|
|
];
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGZusOSiUVSMjrvNdUq4R91Gafq4XVs9C77Zt+LMPhCU eirikw@live.no"
|
|
];
|
|
};
|
|
}
|