Infini-DL360/users: init

This commit is contained in:
Infinidoge 2025-08-14 14:19:40 -04:00
parent 5ed3257499
commit 2ae55152c6
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E
2 changed files with 15 additions and 0 deletions

View file

@ -34,6 +34,7 @@
./ssh.nix
./thelounge.nix
./torrenting.nix
./users.nix
./vaultwarden.nix
./web.nix
./wireguard.nix

View file

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