Appimage: Difference between revisions

mention binfmt option (adapted from old wiki)
Jopejoe1 (talk | contribs)
appimage also needs to be enabled for binfmt to work
Line 17: Line 17:


<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
programs.appimage.binfmt = true;
programs.appimage = {
  enable = true;
  binfmt = true;
};
</syntaxhighlight>
</syntaxhighlight>