Files
infrastructure/machines/modules/malobeo_user.nix

20 lines
312 B
Nix

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