m/graphical: enable appimage compatibility
Some checks failed
CI / aarch64-linux (push) Failing after 10m1s
CI / x86_64-linux (push) Failing after 25m5s

This commit is contained in:
Ari Gato 2025-02-12 20:42:57 +01:00
parent bae95eefb7
commit 3a6f75153e

View file

@ -46,7 +46,6 @@ let
rust-bin.stable.latest.default
ruby-lsp
rubyfmt
];
in stdenvNoCC.mkDerivation {
pname = "kate-dev-wrapped";
@ -222,6 +221,16 @@ in {
# plasma-browser-integration
#];
};
appimage = {
enable = true;
binfmt = true;
package = pkgs.appimage-run.override {
extraPkgs = pkgs: [
pkgs.icu
pkgs.protontricks
];
};
};
};
nixpkgs.config = { joypixels.acceptLicense = true; };