Files
nix-config/modules/home/sops/options.nix
mjallen18 d53093a6c1 cleanup
2026-03-18 21:05:20 -05:00

14 lines
282 B
Nix

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