oizys/hosts/algiz
Daylin Morgan cec9ce730f
generalize common -> oizys and add backups option
2024-03-19 09:50:53 -05:00
..
README.md add more docs 2024-01-29 10:31:18 -06:00
default.nix generalize common -> oizys and add backups option 2024-03-19 09:50:53 -05:00
hardware-configuration.nix deadnix/formatting 2024-03-19 08:57:31 -05:00
system.nix make user mutable? 2024-03-19 07:37:24 -05:00

README.md

algiz

Setting up git user for use with gitea originally

sudo -u git ssh-keygen -t rsa -b 4096 -C "Gitea Host Key"
sudo -u git cat /home/git/.ssh/id_rsa.pub | sudo -u git tee -a /home/git/.ssh/authorized_keys
sudo -u git chmod 600 /home/git/.ssh/authorized_keys

/home/git/.ssh/authorized_keys should look like this:

# SSH pubkey from git user
ssh-rsa <Gitea Host Key>

# other keys from users
command="/usr/local/bin/gitea --config=/data/gitea/conf/app.ini serv key-1",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty <user pubkey>

To point gitea/forgejo to the shim gitea binary for SSH I symlink the current system version to /usr/local/bin/gitea.

ln -s /run/current-system/sw/bin/gitea /usr/local/bin/gitea