62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib, pkgs, config, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.nas-apps.collabora;
|
|
in {
|
|
options.nas-apps.collabora = {
|
|
enable = mkEnableOption "collabora docker service";
|
|
|
|
autoStart = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.str;
|
|
default = "9980";
|
|
};
|
|
|
|
name = mkOption {
|
|
type = types.str;
|
|
default = "collabora";
|
|
};
|
|
|
|
image = mkOption {
|
|
type = types.str;
|
|
default = "collabora/code";
|
|
};
|
|
|
|
puid = mkOption {
|
|
type = types.str;
|
|
default = "911";
|
|
};
|
|
|
|
pgid = mkOption {
|
|
type = types.str;
|
|
default = "1000";
|
|
};
|
|
|
|
timeZone = mkOption {
|
|
type = types.str;
|
|
default = "America/Chicago";
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
virtualisation.oci-containers.containers."${cfg.name}" = {
|
|
autoStart = cfg.autoStart;
|
|
image = cfg.image;
|
|
ports = [ "${cfg.port}:9980" ];
|
|
volumes = [
|
|
# ...
|
|
];
|
|
environment = {
|
|
PUID = cfg.puid;
|
|
PGID = cfg.pgid;
|
|
TZ = cfg.timeZone;
|
|
};
|
|
};
|
|
};
|
|
}
|