Move Nix files back to the root of the project

This commit is contained in:
Oliver Davies 2025-03-29 23:19:06 +00:00
parent 52044d9995
commit 087153a16d
223 changed files with 12 additions and 12 deletions

View file

@ -0,0 +1,36 @@
{ config, lib, ... }:
with lib;
let
port = 2222;
in
{
options.nixosModules.gitea.enable = mkEnableOption "Enable gitea";
config = mkIf config.nixosModules.gitea.enable {
services = {
gitea = {
enable = true;
group = "media";
stateDir = "/mnt/media/gitea";
settings = {
server = {
HTTP_PORT = port;
};
service = {
DISABLE_REGISTRATION = true;
};
};
};
caddy.virtualHosts."gitea.oliverdavies.uk" = {
useACMEHost = "oliverdavies.uk";
extraConfig = "reverse_proxy localhost:${toString port}";
};
};
};
}