Files
nix-config/modules/home/sops/options.nix
2025-12-11 21:19:40 -06:00

13 lines
206 B
Nix

{ lib, namespace, ... }:
with lib;
{
options.${namespace}.sops = {
enable = mkEnableOption "enable sops";
defaultSopsFile = mkOption {
type = types.str;
default = null;
};
};
}