Add new gitea

main
Julius 2022-05-19 21:10:04 +02:00
parent 1f8bfa1136
commit e9ce88b058
Signed by: j00lz
GPG Key ID: AF241B0AA237BBA2
6 changed files with 75 additions and 8 deletions

View File

@ -4,6 +4,7 @@
environment.systemPackages = with pkgs; [ git curl ];
programs.neovim.enable = true;
programs.neovim.viAlias = true;
programs.neovim.vimAlias = true;
programs.fish.shellInit = "set -U fish_greeting";
users.defaultUserShell = pkgs.fish;

View File

@ -24,12 +24,12 @@
packages.x86_64-linux.register = let
lxc = nixos-generators.nixosGenerate {
pkgs = pkgs;
modules = [ ./machines/base.nix ];
modules = [ ./machines/base ];
format = "lxc";
};
metadata = nixos-generators.nixosGenerate {
pkgs = pkgs;
modules = [ ./machines/base.nix ];
modules = [ ./machines/base ];
format = "lxc-metadata";
};
in with import nixpkgs { system = "x86_64-linux"; };
@ -61,6 +61,14 @@
tags = [ "database" ];
};
};
gitea = {
imports = [ ./machines/gitea ];
deployment = {
targetUser = "jdejeu";
targetHost = "gitea.lxd";
tags = [ "website" "system" ];
};
};
};
devShells.x86_64-linux.default = pkgs.mkShell {

View File

@ -1,5 +1,5 @@
{ config, pkgs, ... }: {
imports = [ ../common ../common/lxc.nix ];
imports = [ ../../common ../../common/lxc.nix ];
networking.hostName = "base";
system.stateVersion = "21.11";
}

View File

@ -0,0 +1,40 @@
{ config, pkgs, ... }: {
imports = [ ../../common ../../common/lxc.nix ];
networking.hostName = "gitea";
system.stateVersion = "21.11";
environment.systemPackages = with pkgs; [ gnupg unzip ];
networking.firewall.enable = false;
networking.firewall.allowedTCPPorts = [ 3000 ];
services.openssh.permitRootLogin = "no";
services.openssh.passwordAuthentication = false;
# The db can only be accessed from the machine anyways
# so the password is just set to x
environment.etc.giteaPass = {
enable = true;
text = "x";
};
services.gitea = {
enable = true;
ssh = { clonePort = 4321; };
lfs.enable = true;
appName = "Voidcorp Gitea";
domain = "git.asraphiel.dev";
rootUrl = "https://git.asraphiel.dev/";
database = {
type = "postgres";
host = "postgres.lxd";
name = "gitea";
user = "gitea";
passwordFile = "/etc/giteaPass";
createDatabase = false;
};
cookieSecure = true;
disableRegistration = true;
};
}

View File

@ -17,6 +17,15 @@
enableACME = true;
root = "/etc/main";
};
virtualHosts."git.asraphiel.dev" = {
forceSSL = true;
enableACME = true;
http2 = true;
locations."/" = {
proxyPass = "http://gitea.lxd:3000";
proxyWebsockets = true;
};
};
};
security.acme.email = "acme@voidcorp.nl";
security.acme.acceptTerms = true;

View File

@ -3,18 +3,27 @@
networking.hostName = "postgres";
system.stateVersion = "21.11";
environment.systemPackages = with pkgs; [ rsync ];
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 5432 ];
services.postgresql = {
enable = true;
package = pkgs.postgresql_13;
# yes scuffed, but technically lxd can do whatever with the ip's it gives
authentication = "host all all 10.0.0.0/24 trust";
authentication = ''
local all all trust
host all all 10.0.0.0/8 trust
'';
ensureDatabases = [ "gitea" ];
ensureUsers = [{
name = "gitea";
ensurePermissions = { "DATABASE \"gitea\"" = "ALL PRIVILEGES"; };
}];
ensureUsers = [
{
name = "gitea";
ensurePermissions = { "DATABASE \"gitea\"" = "ALL PRIVILEGES"; };
}
];
enableTCPIP = true;
};
}