14 lines
282 B
Nix
Executable File
14 lines
282 B
Nix
Executable File
{ lib, namespace, ... }:
|
|
with lib;
|
|
{
|
|
options.${namespace}.sops = {
|
|
enable = mkEnableOption "enable sops";
|
|
|
|
defaultSopsFile = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = "Path to the default sops secrets file.";
|
|
};
|
|
};
|
|
}
|