{ povSelf, config, lib, ... }: let inherit (lib) types; cfg = lib.getAttrFromPath povSelf config; in { option = { type = types.bool; default = false; }; config = lib.mkIf cfg { modules = { audio.enable = true; boot = { plymouth.enable = true; secureboot = lib.mkDefault true; }; font.enable = true; homeManager.enable = lib.mkDefault true; }; }; }