nix-config/nixos/modules/secrets.nix
2022-09-18 17:33:24 +02:00

10 lines
208 B
Nix

{ config, lib, ... }:
{
options = {
dadada.secrets.path = lib.mkOption {
type = lib.types.path;
description = "Path to encrypted secrets files";
default = ../../secrets;
};
};
}