{ lib, config, pkgs, ... }: let inherit (lib) mkIf mkOption types; in { options.smayzy.inkscape.enable = mkOption { type = types.bool; default = false; description = "inkscape"; }; config = mkIf config.smayzy.inkscape.enable { environment.systemPackages = with pkgs; [ inkscape ]; }; }