.dotfiles/modules/nixos/common/meta.nix
2025-06-11 04:01:07 +02:00

8 lines
178 B
Nix

{ lib, ... }:
{
options.node.secretsDir = lib.mkOption {
description = "Path to the secrets directory for this node.";
type = lib.types.path;
default = ./.;
};
}