Appimage: Difference between revisions
Haruki7049 (talk | contribs) Prepared the page for translation |
Haruki7049 (talk | contribs) exclude the code block from translation |
||
| Line 7: | Line 7: | ||
== Running an AppImage file on NixOS == | == Running an AppImage file on NixOS == | ||
</translate> | |||
<syntaxhighlight lang="shell"> | <syntaxhighlight lang="shell"> | ||
$ nix-shell -p appimage-run | $ nix-shell -p appimage-run | ||
$ appimage-run $AppImageFile | $ appimage-run $AppImageFile | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<translate> | |||
== Register AppImage files as a binary type to binfmt_misc == | == Register AppImage files as a binary type to binfmt_misc == | ||
| Line 18: | Line 20: | ||
Since [https://nixos.org/manual/nixos/stable/release-notes#sec-release-24.05-new-services NixOS 24.05], there is a binfmt option: | Since [https://nixos.org/manual/nixos/stable/release-notes#sec-release-24.05-new-services NixOS 24.05], there is a binfmt option: | ||
</translate> | |||
<syntaxhighlight lang="nixos"> | <syntaxhighlight lang="nixos"> | ||
programs.appimage = { | programs.appimage = { | ||
| Line 24: | Line 27: | ||
}; | }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<translate> | |||
This way AppImage files can be invoked directly as if they were normal programs | This way AppImage files can be invoked directly as if they were normal programs | ||