mynixos-config/modules/meta.nix
2024-11-26 13:34:55 +01:00

13 lines
203 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;
};
}