20 lines
373 B
Nix
20 lines
373 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.mistergij = {
|
|
description = "Account for hosting DnD World bots";
|
|
isNormalUser = true;
|
|
shell = pkgs.bash;
|
|
};
|
|
|
|
users.users.alina = {
|
|
description = "Puppygirl of fedi";
|
|
isNormalUser = true;
|
|
shell = pkgs.nushell;
|
|
};
|
|
|
|
services.openssh.extraConfig = ''
|
|
Match user mistergij
|
|
DisableForwarding yes
|
|
'';
|
|
}
|