16 lines
403 B
Nix
16 lines
403 B
Nix
{
|
|
programs.appimage = {
|
|
enable = true;
|
|
binfmt = true;
|
|
# If moondeck-buddy.AppImage requires specific libraries not included by default
|
|
# you might need to add them here. For example:
|
|
# package = pkgs.appimage-run.override {
|
|
# extraPkgs = pkgs: with pkgs; [
|
|
# # Add any missing libraries here, e.g.,
|
|
# # libthai
|
|
# # qt5.full
|
|
# ];
|
|
# };
|
|
};
|
|
}
|