forked from kalipso/infrastructure
[moderatio] mv malobeo user to modules/malobeo_user.nix
This commit is contained in:
19
machines/modules/malobeo_user.nix
Normal file
19
machines/modules/malobeo_user.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user