added forgejo config using sqlite.

This commit is contained in:
Gabe Venberg 2024-07-29 15:02:40 -05:00
parent 6dcbb146b7
commit f91cb5469d
8 changed files with 77 additions and 32 deletions

View file

@ -19,6 +19,7 @@ inputs.nixpkgs.lib.nixosSystem {
../../configs/nixos/sshd.nix
../../configs/nixos/secrets.nix
../../configs/nixos/radicale.nix
# ../../configs/nixos/forgejo.nix
({
config,
pkgs,

View file

@ -35,4 +35,3 @@
};
};
}

View file

@ -8,12 +8,10 @@
imports = [
../../configs/nixos/nginx.nix
];
services.nginx.virtualHosts."cal.venberg.xyz" = {
services.nginx.virtualHosts."gabevenberg.com" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:5232";
};
root = "/var/www/gabevenberg.com";
};
networking.firewall.allowedTCPPorts = [443 80];
}

View file

@ -6,9 +6,9 @@
lib,
...
}: {
services.adguardhome={
enable=true;
mutableSettings=true;
allowDHCP=true;
services.adguardhome = {
enable = true;
mutableSettings = true;
allowDHCP = true;
};
}