1{lib, ...}: 2let 3 options = { 4 stylix = lib.mkOption { 5 type = lib.types.raw; 6 }; 7 }; 8in 9{ 10 inherit options; 11 config = { 12 home-manager.sharedModules = [{ 13 inherit options; 14 }]; 15 }; 16}