10 lines
208 B
Nix
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;
|
|
};
|
|
};
|
|
}
|