Compare commits

..

No commits in common. "0b5a15962384d991a29d7308fdc12bb256be4e19" and "769fe4636e9f68d2a291372c7090e35b8c60bd90" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@
./acme.nix ./acme.nix
./ddns.nix ./ddns.nix
./nginx.nix ./nginx.nix
./forgejo.nix ./gitea.nix
./printing.nix ./printing.nix
./restic.nix ./restic.nix
./ssh.nix ./ssh.nix

View file

@ -1,10 +1,10 @@
{ pkgs, ...}: { pkgs, ...}:
{ {
services.forgejo = { services.gitea = {
enable = true; enable = true;
settings.DEFAULT.APP_NAME = "Lambda-Git"; appName = "Lambda-Git";
package = pkgs.forgejo; package = pkgs.forgejo;
stateDir = "/forgejo"; stateDir = "/gitea";
database = { database = {
type = "sqlite3"; type = "sqlite3";
}; };