nix-config/modules/meta.nix

13 lines
209 B
Nix
Raw Normal View History

2024-07-26 22:12:48 +02:00
{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
2023-08-26 14:01:58 +02:00
options.node = {
secretsDir = mkOption {
2023-09-26 22:25:58 +02:00
description = "Path to the secrets directory for this node.";
2023-08-26 14:01:58 +02:00
type = types.path;
};
};
}