universe/hosts/Infini-DL360/users.nix

14 lines
253 B
Nix

{ pkgs, ... }:
{
users.users.mistergij = {
description = "Account for hosting DnD World bots";
isNormalUser = true;
shell = pkgs.bash;
};
services.openssh.extraConfig = ''
Match user mistergij
DisableForwarding yes
'';
}