nix-config/modules/meta.nix

15 lines
224 B
Nix
Raw Normal View History

2024-01-11 15:41:03 +01:00
{lib, ...}: let
2023-08-26 14:01:58 +02:00
inherit
(lib)
mkOption
types
;
in {
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;
};
};
}