2025.04.30-20:50
This commit is contained in:
16
nixos_24.11_cinnamon/config/appimage.nix
Normal file
16
nixos_24.11_cinnamon/config/appimage.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
boot.binfmt = {
|
||||
registrations.appimage = {
|
||||
wrapInterpreterInShell = false;
|
||||
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
|
||||
recognitionType = "magic";
|
||||
offset = 0;
|
||||
mask = "\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\xff\\xff\\xff";
|
||||
magicOrExtension = "\\x7fELF....AI\\x02";
|
||||
};
|
||||
# run aarch64 binaries
|
||||
emulatedSystems = [ "aarch64-linux" ];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user