Files
nix-config/modules/home/sops/options.nix
2025-07-21 14:09:41 -05:00

12 lines
189 B
Nix

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