{ inputs, outputs, options, config, lib, pkgs, ... }: with lib; let cfg = config.modules.desktop.chat.discord; in { options.modules.desktop.chat.discord = { enable = mkEnableOption false; }; config = mkIf cfg.enable { users.users.sako.packages = [ (inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.discord-canary.override { withOpenASAR = true; withVencord = true; }) ]; }; }