{ config, lib, povSelf, ... }: let inherit (lib) types; cfg = lib.getAttrFromPath povSelf config; in { options.enable = { type = types.bool; default = false; }; config = lib.mkIf cfg.enable { boot.initrd.availableKernelModules = [ "thunderbolt" ]; services.hardware.bolt.enable = true; }; }