Split Forgejo and Airsonic into separate files
This commit is contained in:
parent
fc314e43e5
commit
4c1336d7d4
|
@ -6,19 +6,6 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
cfg = config.services.forgejo;
|
|
||||||
forgejo-cli = pkgs.writeScriptBin "forgejo-cli" ''
|
|
||||||
#!${pkgs.runtimeShell}
|
|
||||||
cd ${cfg.stateDir}
|
|
||||||
sudo=exec
|
|
||||||
if [[ "$USER" != forgejo ]]; then
|
|
||||||
sudo='exec /run/wrappers/bin/sudo -u ${cfg.user} -g ${cfg.group} --preserve-env=GITEA_WORK_DIR --preserve-env=GITEA_CUSTOM'
|
|
||||||
fi
|
|
||||||
# Note that these variable names will change
|
|
||||||
export GITEA_WORK_DIR=${cfg.stateDir}
|
|
||||||
export GITEA_CUSTOM=${cfg.customDir}
|
|
||||||
$sudo ${lib.getExe cfg.package} "$@"
|
|
||||||
'';
|
|
||||||
start-haven = pkgs.writeShellScriptBin "start-haven" (builtins.readFile ./start-haven.sh);
|
start-haven = pkgs.writeShellScriptBin "start-haven" (builtins.readFile ./start-haven.sh);
|
||||||
|
|
||||||
subdomains = map (subdomain: subdomain + ".${config.secrets.networking.primaryDomain}") [
|
subdomains = map (subdomain: subdomain + ".${config.secrets.networking.primaryDomain}") [
|
||||||
|
@ -37,23 +24,31 @@ in
|
||||||
apps.development.kubernetes.enable = true;
|
apps.development.kubernetes.enable = true;
|
||||||
services = {
|
services = {
|
||||||
apcupsd.enable = true;
|
apcupsd.enable = true;
|
||||||
|
airsonic = {
|
||||||
|
enable = true;
|
||||||
|
domain = config.secrets.networking.primaryDomain;
|
||||||
|
home = "/storage/services/airsonic-advanced";
|
||||||
|
};
|
||||||
duplicacy-web = {
|
duplicacy-web = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autostart = false;
|
autostart = false;
|
||||||
environment = "${config.users.users.aires.home}";
|
environment = "${config.users.users.aires.home}";
|
||||||
};
|
};
|
||||||
|
forgejo = {
|
||||||
|
enable = true;
|
||||||
|
domain = config.secrets.networking.primaryDomain;
|
||||||
|
home = "/storage/services/forgejo";
|
||||||
|
};
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
};
|
};
|
||||||
users = {
|
users = {
|
||||||
aires = {
|
aires = {
|
||||||
enable = true;
|
enable = true;
|
||||||
services = {
|
services.syncthing = {
|
||||||
syncthing = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
autostart = false;
|
autostart = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
media.enable = true;
|
media.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -81,7 +76,6 @@ in
|
||||||
# and readable by the Nginx user. The easiest way to achieve
|
# and readable by the Nginx user. The easiest way to achieve
|
||||||
# this is to add the Nginx user to the ACME group.
|
# this is to add the Nginx user to the ACME group.
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
users.users.airsonic.extraGroups = [ "media" ];
|
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
nginx = {
|
nginx = {
|
||||||
|
@ -102,46 +96,9 @@ in
|
||||||
return = "301 https://code.${config.secrets.networking.primaryDomain}";
|
return = "301 https://code.${config.secrets.networking.primaryDomain}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Forgejo
|
|
||||||
"code.${config.secrets.networking.primaryDomain}" = {
|
|
||||||
useACMEHost = "${config.secrets.networking.primaryDomain}";
|
|
||||||
forceSSL = true;
|
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://127.0.0.1:3000";
|
|
||||||
proxyWebsockets = true;
|
|
||||||
extraConfig = "proxy_ssl_server_name on;"; # required when the target is also TLS server with multiple hosts
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Airsonic
|
|
||||||
"music.${config.secrets.networking.primaryDomain}" = {
|
|
||||||
useACMEHost = "${config.secrets.networking.primaryDomain}";
|
|
||||||
forceSSL = true;
|
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://127.0.0.1:4040";
|
|
||||||
proxyWebsockets = true;
|
|
||||||
extraConfig = "proxy_ssl_server_name on;";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable Airsonic-Advanced (music streaming)
|
|
||||||
airsonic = {
|
|
||||||
enable = true;
|
|
||||||
war = "${
|
|
||||||
(pkgs.callPackage ../../packages/airsonic-advanced.nix { inherit lib; })
|
|
||||||
}/webapps/airsonic.war";
|
|
||||||
port = 4040;
|
|
||||||
jre = pkgs.jdk17;
|
|
||||||
jvmOptions = [
|
|
||||||
"-Dserver.use-forward-headers=true"
|
|
||||||
"-Xmx4G" # Increase Java heap size to 4GB
|
|
||||||
];
|
|
||||||
home = "/storage/services/airsonic-advanced";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable BOINC (distributed research computing)
|
# Enable BOINC (distributed research computing)
|
||||||
boinc = {
|
boinc = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -150,19 +107,6 @@ in
|
||||||
extraEnvPackages = [ pkgs.ocl-icd ];
|
extraEnvPackages = [ pkgs.ocl-icd ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable Forgejo / Gitea (code repository)
|
|
||||||
forgejo = {
|
|
||||||
enable = true;
|
|
||||||
stateDir = "/storage/services/forgejo";
|
|
||||||
lfs.enable = true;
|
|
||||||
settings.server = {
|
|
||||||
DOMAIN = "${config.secrets.networking.primaryDomain}";
|
|
||||||
ROOT_URL = "https://code.${config.secrets.networking.primaryDomain}/";
|
|
||||||
HTTP_PORT = 3000;
|
|
||||||
};
|
|
||||||
useWizard = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable SSH
|
# Enable SSH
|
||||||
openssh = {
|
openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -180,21 +124,8 @@ in
|
||||||
# TODO: VPN (Check out Wireguard)
|
# TODO: VPN (Check out Wireguard)
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure services
|
|
||||||
systemd.services = {
|
|
||||||
# Disable autostart for services. They get started via start-haven script
|
|
||||||
airsonic.wantedBy = lib.mkForce [ ];
|
|
||||||
forgejo.wantedBy = lib.mkForce [ ];
|
|
||||||
|
|
||||||
# Nginx: Disable autostart, and start sub-services first.
|
# Nginx: Disable autostart, and start sub-services first.
|
||||||
nginx = {
|
systemd.services.nginx.wantedBy = lib.mkForce [ ];
|
||||||
wantedBy = lib.mkForce [ ];
|
|
||||||
wants = [
|
|
||||||
config.systemd.services.airsonic.name
|
|
||||||
config.systemd.services.forgejo.name
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Open ports
|
# Open ports
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
|
@ -205,13 +136,8 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Add extra packages:
|
# Add Haven's startup script
|
||||||
# 1: forgejo CLI tool
|
environment.systemPackages = [ start-haven ];
|
||||||
# 2: Haven's startup script
|
|
||||||
environment.systemPackages = [
|
|
||||||
forgejo-cli
|
|
||||||
start-haven
|
|
||||||
];
|
|
||||||
|
|
||||||
# Allow Haven to be a build target for other architectures (mainly ARM64)
|
# Allow Haven to be a build target for other architectures (mainly ARM64)
|
||||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
|
|
60
modules/services/airsonic.nix
Normal file
60
modules/services/airsonic.nix
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
subdomains,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
cfg = config.host.services.airsonic;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
host.services.airsonic = {
|
||||||
|
enable = lib.mkEnableOption (lib.mdDoc "Enables Airsonic Advanced media streaming service.");
|
||||||
|
home = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Where to store Airsonic's files";
|
||||||
|
};
|
||||||
|
domain = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "FQDN for the host server";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
host.users.media.enable = true;
|
||||||
|
users.users.airsonic.extraGroups = [ "media" ];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
nginx.virtualHosts."music.${cfg.domain}" = {
|
||||||
|
useACMEHost = cfg.domain;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:4040";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
extraConfig = "proxy_ssl_server_name on;";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
airsonic = {
|
||||||
|
enable = true;
|
||||||
|
war = "${
|
||||||
|
(pkgs.callPackage ../../packages/airsonic-advanced.nix { inherit lib; })
|
||||||
|
}/webapps/airsonic.war";
|
||||||
|
port = 4040;
|
||||||
|
jre = pkgs.jdk17;
|
||||||
|
jvmOptions = [
|
||||||
|
"-Dserver.use-forward-headers=true"
|
||||||
|
"-Xmx4G" # Increase Java heap size to 4GB
|
||||||
|
];
|
||||||
|
} // lib.optionalAttrs (cfg.home != null) { home = cfg.home; };
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services = {
|
||||||
|
airsonic.wantedBy = lib.mkForce [ ];
|
||||||
|
nginx.wants = [ config.systemd.services.airsonic.name ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
71
modules/services/forgejo.nix
Normal file
71
modules/services/forgejo.nix
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
subdomains,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
cfg = config.host.services.forgejo;
|
||||||
|
|
||||||
|
cli-cfg = config.services.forgejo;
|
||||||
|
|
||||||
|
forgejo-cli = pkgs.writeScriptBin "forgejo-cli" ''
|
||||||
|
#!${pkgs.runtimeShell}
|
||||||
|
cd ${cli-cfg.stateDir}
|
||||||
|
sudo=exec
|
||||||
|
if [[ "$USER" != forgejo ]]; then
|
||||||
|
sudo='exec /run/wrappers/bin/sudo -u ${cli-cfg.user} -g ${cli-cfg.group} --preserve-env=GITEA_WORK_DIR --preserve-env=GITEA_CUSTOM'
|
||||||
|
fi
|
||||||
|
# Note that these variable names will change
|
||||||
|
export GITEA_WORK_DIR=${cli-cfg.stateDir}
|
||||||
|
export GITEA_CUSTOM=${cli-cfg.customDir}
|
||||||
|
$sudo ${lib.getExe cli-cfg.package} "$@"
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
host.services.forgejo = {
|
||||||
|
enable = lib.mkEnableOption (lib.mdDoc "Enables Forgejo Git hosting service.");
|
||||||
|
home = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Where to store Airsonic's files";
|
||||||
|
};
|
||||||
|
domain = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "FQDN for the host server";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
environment.systemPackages = [ forgejo-cli ];
|
||||||
|
services = {
|
||||||
|
nginx.virtualHosts."code.${cfg.domain}" = {
|
||||||
|
useACMEHost = cfg.domain;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:3000";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
extraConfig = "proxy_ssl_server_name on;"; # required when the target is also TLS server with multiple hosts
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
forgejo = {
|
||||||
|
enable = true;
|
||||||
|
lfs.enable = true;
|
||||||
|
settings.server = {
|
||||||
|
DOMAIN = "${config.secrets.networking.primaryDomain}";
|
||||||
|
ROOT_URL = "https://code.${config.secrets.networking.primaryDomain}/";
|
||||||
|
HTTP_PORT = 3000;
|
||||||
|
};
|
||||||
|
useWizard = true;
|
||||||
|
} // lib.optionalAttrs (cfg.home != null) { stateDir = cfg.home; };
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services = {
|
||||||
|
forgejo.wantedBy = lib.mkForce [ ];
|
||||||
|
nginx.wants = [ config.systemd.services.forgejo.name ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue