37 lines
733 B
Nix
37 lines
733 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.youthlic.programs.awscli;
|
|
in
|
|
{
|
|
options = {
|
|
youthlic.programs.awscli = {
|
|
enable = lib.mkEnableOption "awscli";
|
|
url = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "https://s3.youthlic.social";
|
|
};
|
|
};
|
|
};
|
|
config = lib.mkIf cfg.enable {
|
|
sops.secrets."awscli" = { };
|
|
programs.awscli = {
|
|
enable = true;
|
|
credentials = {
|
|
default = {
|
|
credential_process = "${lib.getExe' pkgs.uutils-coreutils-noprefix "cat"} ${config.sops.secrets.awscli.path}";
|
|
};
|
|
};
|
|
settings = {
|
|
default = {
|
|
region = "garage";
|
|
endpoint_url = cfg.url;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|