{ config, lib, pkgs, ... }: with lib; let cfg = config.appimage; in { options.appimage = { enable = mkEnableOption "AppImage support"; }; config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ appimageupdate appimage-run ]; }; }