[moderatio] mv malobeo user to modules/malobeo_user.nix

This commit is contained in:
2022-10-04 19:18:23 +02:00
parent 258413dfb8
commit d7d2cc687b
2 changed files with 20 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
{ 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";
};
}