This commit is contained in:
XenGi 2026-02-13 18:23:43 +01:00
parent 219482c2f3
commit 5807b563a1
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
5 changed files with 4 additions and 4 deletions

View file

@ -1,16 +0,0 @@
{ pkgs, ... }:
{
users.users.deploy = {
description = "deploys static websites from forgejo";
shell = pkgs.nologin;
packages = [
pkgs.rsync
];
openssh.authorizedKeys.keys = [
"command='rsync --server --daemon . /srv/http/www/',restrict ssh-ed25519 AAAAB3NzaC1yc2EAAAADAQABAAABAQCy... git.berlin.ccc.de/cccb/www"
];
#extraGroups = ["nginx"];
};
}