From 4542caafc5e6d5013501cc66943f5378d0131228 Mon Sep 17 00:00:00 2001 From: joy Date: Mon, 14 Oct 2024 17:54:56 +0200 Subject: [PATCH] remove app image --- modules/system/appimage/default.nix | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 modules/system/appimage/default.nix diff --git a/modules/system/appimage/default.nix b/modules/system/appimage/default.nix deleted file mode 100644 index 2704021..0000000 --- a/modules/system/appimage/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{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''; - }; -}