mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
119 lines
3.1 KiB
Nix
119 lines
3.1 KiB
Nix
{ inputs, ... }: {
|
|
flake.modules.nixos.services =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
options,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.tnix.services.copyparty;
|
|
port = toString cfg.port;
|
|
acmeHost = config.tnix.services.nginx.domain;
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.copyparty.nixosModules.default
|
|
];
|
|
|
|
options.tnix.services.copyparty = {
|
|
enable = mkEnableOption "Copyparty";
|
|
|
|
host = mkOption {
|
|
type = types.str;
|
|
default = "127.0.0.1";
|
|
description = "Host on which Copyparty listens";
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 1115;
|
|
description = "Port on which Copyparty listens";
|
|
};
|
|
|
|
domain = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = "Domain on which Copyparty is available";
|
|
};
|
|
|
|
accounts = options.services.copyparty.accounts;
|
|
volumes = options.services.copyparty.volumes;
|
|
|
|
configureNginx = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Whether to configure Nginx as a reverse proxy for Copyparty";
|
|
};
|
|
|
|
configurePangolin = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Whether to configure Pangolin as a reverse proxy for Copyparty";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
{
|
|
assertion = cfg.domain != "";
|
|
message = "tnix.services.copyparty.domain must be set when tnix.services.copyparty.enable is true.";
|
|
}
|
|
];
|
|
|
|
services = {
|
|
copyparty = {
|
|
enable = true;
|
|
settings = {
|
|
i = cfg.host;
|
|
p = cfg.port;
|
|
no-reload = true;
|
|
ignored-flag = false;
|
|
};
|
|
accounts = cfg.accounts;
|
|
volumes = cfg.volumes;
|
|
package = pkgs.copyparty.override {
|
|
extraPackages = [ pkgs.exiftool ];
|
|
};
|
|
};
|
|
|
|
nginx.virtualHosts.${cfg.domain} = mkIf cfg.configureNginx {
|
|
forceSSL = acmeHost != "";
|
|
useACMEHost = mkIf (acmeHost != "") acmeHost;
|
|
locations."/" = {
|
|
proxyPass = "http://${cfg.host}:${port}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
|
|
newt.blueprint.proxy-resources = mkIf cfg.configurePangolin {
|
|
copyparty = {
|
|
auth = {
|
|
sso-enabled = false;
|
|
};
|
|
full-domain = cfg.domain;
|
|
name = "copyparty";
|
|
protocol = "http";
|
|
targets = [
|
|
{
|
|
hostname = "localhost";
|
|
method = "http";
|
|
port = cfg.port;
|
|
healthcheck = {
|
|
hostname = "localhost";
|
|
port = cfg.port;
|
|
scheme = "http";
|
|
method = "GET";
|
|
path = "/";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|