2024-08-12 21:57:21 +00:00
|
|
|
## Secrets
|
|
|
|
|
|
|
|
## various ways to manage secrets without writing them to the
|
|
|
|
## nix store
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2024-08-12 21:57:21 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
inherit (pkgs.liminix.services) longrun;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2024-08-12 21:57:21 +00:00
|
|
|
options.system.service.secrets = {
|
|
|
|
outboard = mkOption {
|
|
|
|
description = "fetch secrets from external vault with https";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2024-08-28 21:32:26 +00:00
|
|
|
tang = mkOption {
|
|
|
|
description = "fetch secrets from encrypted local pathname, using tang";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2024-08-15 22:00:41 +00:00
|
|
|
subscriber = mkOption {
|
|
|
|
description = "wrapper around a service that needs notifying (e.g. restarting) when secrets change";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
2024-08-12 21:57:21 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
config.system.service.secrets = {
|
|
|
|
outboard = config.system.callService ./outboard.nix {
|
|
|
|
url = mkOption {
|
|
|
|
description = "source url";
|
|
|
|
type = types.strMatching "https?://.*";
|
|
|
|
};
|
2024-08-28 19:53:59 +00:00
|
|
|
username = mkOption {
|
|
|
|
description = "username for HTTP basic auth";
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
};
|
|
|
|
password = mkOption {
|
|
|
|
description = "password for HTTP basic auth";
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
};
|
2024-08-28 21:32:26 +00:00
|
|
|
name = mkOption {
|
|
|
|
description = "service name";
|
|
|
|
type = types.str;
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
interval = mkOption {
|
2024-08-28 21:32:26 +00:00
|
|
|
type = types.int;
|
|
|
|
default = 30;
|
|
|
|
description = "how often to check the source, in minutes";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
tang = config.system.callService ./tang.nix {
|
|
|
|
path = mkOption {
|
|
|
|
description = "encrypted source pathname";
|
|
|
|
type = types.path;
|
|
|
|
};
|
2024-08-12 21:57:21 +00:00
|
|
|
name = mkOption {
|
|
|
|
description = "service name";
|
|
|
|
type = types.str;
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
interval = mkOption {
|
2024-08-12 21:57:21 +00:00
|
|
|
type = types.int;
|
|
|
|
default = 30;
|
|
|
|
description = "how often to check the source, in minutes";
|
|
|
|
};
|
|
|
|
};
|
2024-08-15 22:00:41 +00:00
|
|
|
subscriber = config.system.callService ./subscriber.nix {
|
2024-08-20 20:49:11 +00:00
|
|
|
watch = mkOption {
|
|
|
|
description = "secrets paths to subscribe to";
|
2024-08-30 19:46:48 +00:00
|
|
|
type = types.listOf (types.functionTo types.anything);
|
2024-08-15 22:00:41 +00:00
|
|
|
};
|
|
|
|
service = mkOption {
|
|
|
|
description = "subscribing service that will receive notification";
|
|
|
|
type = liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
action = mkOption {
|
|
|
|
description = "how do we notify the service to regenerate its config";
|
|
|
|
default = "restart-all";
|
|
|
|
type = types.enum [
|
2025-02-10 21:55:08 +00:00
|
|
|
"restart"
|
|
|
|
"restart-all"
|
|
|
|
"hup"
|
|
|
|
"int"
|
|
|
|
"quit"
|
|
|
|
"kill"
|
|
|
|
"term"
|
|
|
|
"winch"
|
|
|
|
"usr1"
|
|
|
|
"usr2"
|
2024-08-15 22:00:41 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-08-12 21:57:21 +00:00
|
|
|
};
|
|
|
|
}
|