Files
nix-config/modules/home/sops/options.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

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.";
};
};
}