infra/pastila/armael.nix
2024-05-28 20:09:35 +02:00

17 lines
328 B
Nix

{ config, lib, pkgs, ... }:
{
users.users.armael = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBvPrmxY7H6t4ah7d0e7/Jt9RkrPHI1MREukOSSwaqlp armael@teabox"
];
};
environment.systemPackages = with pkgs; [
weechat
];
}