forked from kalipso/infrastructure
20 lines
312 B
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";
|
|
};
|
|
}
|