infra/pastila/armael.nix

17 lines
328 B
Nix
Raw Normal View History

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