{ config, lib, pkgs, ... }: let sshKeys = import ../ssh_keys.nix; in { users.users.malobeo = { isNormalUser = true; extraGroups = [ "pipewire" "wheel" "pulse-access" "scanner" "lp" ]; openssh.authorizedKeys.keys = sshKeys.admins; initialPassword = "test"; }; }