48 lines
876 B
Nix
48 lines
876 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
{
|
|
options.nas-apps.free-games-claimer = {
|
|
enable = mkEnableOption "free-games-claimer docker service";
|
|
|
|
autoStart = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
|
|
httpPort = mkOption {
|
|
type = types.str;
|
|
default = "6080";
|
|
};
|
|
|
|
name = mkOption {
|
|
type = types.str;
|
|
default = "free-games-claimer";
|
|
};
|
|
|
|
image = mkOption {
|
|
type = types.str;
|
|
default = "ghcr.io/vogler/free-games-claimer";
|
|
};
|
|
|
|
dataPath = mkOption {
|
|
type = types.str;
|
|
default = "/media/nas/ssd/nix-app-data/free-games-claimer";
|
|
};
|
|
|
|
puid = mkOption {
|
|
type = types.str;
|
|
default = "911";
|
|
};
|
|
|
|
pgid = mkOption {
|
|
type = types.str;
|
|
default = "1000";
|
|
};
|
|
|
|
timeZone = mkOption {
|
|
type = types.str;
|
|
default = "America/Chicago";
|
|
};
|
|
};
|
|
}
|