13 lines
209 B
Nix
13 lines
209 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
options.node = {
|
|
secretsDir = mkOption {
|
|
description = "Path to the secrets directory for this node.";
|
|
type = types.path;
|
|
};
|
|
};
|
|
}
|