.dotfiles/modules/nixos/common/meta.nix
2025-06-28 17:57:44 +02:00

12 lines
278 B
Nix

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