{ povSelf, pkgs, lib, config, ... }: let inherit (lib) types; cfg = lib.getAttrFromPath povSelf config; in { options.enable = { type = types.bool; default = false; }; config = lib.mkIf cfg.enable { environment.systemPackages = with pkgs; [ age eza file gnupg helix nmap nvd openssh openssl p7zip progress screen sops unzip rsync ]; programs = { bat.enable = true; direnv.enable = true; nano.enable = true; }; }; }