Add forgejo, potentially to replace Gitea
This commit is contained in:
parent
815c9ece0e
commit
c50f54fb2c
|
@ -12,6 +12,7 @@
|
|||
};
|
||||
|
||||
homelab = {
|
||||
forgejo.enable = true;
|
||||
gitea.enable = true;
|
||||
immich.enable = true;
|
||||
jellyfin.enable = true;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./audiobookshelf.nix
|
||||
./forgejo.nix
|
||||
./gitea.nix
|
||||
./immich.nix
|
||||
./jellyfin.nix
|
||||
|
|
36
nix/modules/nixos/features/homelab/forgejo.nix
Normal file
36
nix/modules/nixos/features/homelab/forgejo.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
port = 2223;
|
||||
in
|
||||
{
|
||||
options.features.homelab.forgejo.enable = mkEnableOption "Enable forgejo";
|
||||
|
||||
config = mkIf config.features.homelab.forgejo.enable {
|
||||
services = {
|
||||
forgejo = {
|
||||
enable = true;
|
||||
group = "media";
|
||||
stateDir = "/mnt/media/forgejo";
|
||||
|
||||
settings = {
|
||||
server = {
|
||||
HTTP_PORT = port;
|
||||
};
|
||||
|
||||
service = {
|
||||
DISABLE_REGISTRATION = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nginx = {
|
||||
enable = true;
|
||||
|
||||
virtualHosts."forgejo.davies.home".locations."/".proxyPass = "http://localhost:${toString port}/";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue