forked from Fediversity/Fediversity
35 lines
716 B
Nix
35 lines
716 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption mkEnableOption;
|
|
inherit (lib.types) types;
|
|
|
|
in
|
|
{
|
|
options.fediversity.pixelfed = {
|
|
enable = mkEnableOption "Enable a Pixelfed server on the machine";
|
|
|
|
s3AccessKey = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
S3 access key
|
|
|
|
In AWS CLI, this would be AWS_ACCESS_KEY_ID.
|
|
'';
|
|
};
|
|
|
|
s3SecretKey = mkOption {
|
|
description = ''
|
|
S3 secret key
|
|
|
|
In AWS CLI, this would be AWS_SECRET_ACCESS_KEY.
|
|
'';
|
|
};
|
|
|
|
domain = mkOption {
|
|
type = types.str;
|
|
description = "Internal option — change at your own risk";
|
|
default = "pixelfed.${config.fediversity.domain}";
|
|
};
|
|
};
|
|
}
|