Files
infrastructure/machines/modules/malobeo_user.nix

15 lines
244 B
Nix

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