{ pkgs, config, lib, ... }: let cfg = config.my.home.age; in { options.my.home.age = with lib; { enable = mkEnableOption "r|age tooling"; }; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ age # https://github.com/FiloSottile/age rage # https://github.com/str4d/rage age-plugin-yubikey # https://github.com/str4d/age-plugin-yubikey ]; }; }