host/magenta: use unstable gitea

This commit is contained in:
Dmitriy Pleshevskiy 2023-03-31 13:07:37 +03:00
parent a70d19b50b
commit 8c7fb4159d
Signed by: pleshevskiy
GPG key ID: 79C4487B44403985

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, inputs, ... }:
{ config, pkgs, lib, ... }:
let
hostname = "git.pleshevski.ru";
@ -17,7 +17,7 @@ in
services.gitea = {
enable = true;
httpPort = 9901;
package = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.gitea;
package = pkgs.unstable.gitea;
domain = hostname;
rootUrl = "https://${hostname}";
appName = "Pleshevskiy's Gitea";