Compare commits

..

No commits in common. "ec70981fd46dc463f9b00898e8c2daea540ea8e3" and "fcd49a8a963ed3b963850c9e91eb04322b9a6877" have entirely different histories.

4 changed files with 11 additions and 7 deletions

View file

@ -2,7 +2,7 @@
imports = [ imports = [
./acme ./acme
./atuin ./atuin
# ./gatus ./gatus
./gitea ./gitea
./nginx ./nginx
./ssh ./ssh

View file

@ -1,6 +1,11 @@
{config, ...}: { {
services.forgejo = { config,
pkgs,
...
}: {
services.gitea = {
enable = true; enable = true;
package = pkgs.forgejo;
lfs.enable = true; lfs.enable = true;
database = { database = {
type = "postgres"; type = "postgres";

View file

@ -1,7 +1,7 @@
{...}: { {...}: {
age.secrets.gitea = { age.secrets.gitea = {
file = ../../../../secrets/gitea.age; file = ../../../../secrets/gitea.age;
owner = "forgejo"; owner = "gitea";
group = "forgejo"; group = "gitea";
}; };
} }

View file

@ -1,7 +1,6 @@
{...}: { {...}: {
users.mutableUsers = false; users.mutableUsers = false;
users.users.root.openssh.authorizedKeys.keys = [ users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu laurent@silicium" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIItSJTtS7tO0Wz/WgHAFb3xuNFZpm8SOvr/o8uR83zzy laurent@aurum"
]; ];
} }