{ config, options, lib, pkgs, ... }: let inherit (lib.modules) mkIf; in { options.modules.develop = let inherit (lib.options) mkEnableOption; in { xdg.enable = mkEnableOption "XDG-related conf" // { default = true; }; }; config = mkIf conf.modules.develop.xdg.enable { }; }