From 35a3ec8f7c3e261718f123075f37eeb202d1e530 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Tue, 29 Apr 2025 11:45:50 -0700 Subject: [PATCH] [vega] Enables running app-images as binaries --- system/hosts/vega/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/system/hosts/vega/configuration.nix b/system/hosts/vega/configuration.nix index c4b27eb..5dac2f7 100644 --- a/system/hosts/vega/configuration.nix +++ b/system/hosts/vega/configuration.nix @@ -149,4 +149,11 @@ # Enable the font directory for managing fonts # This doesn't seem to be needed though. # fonts.fontDir.enable = true; + + # Run Appimage files as binaries using appimage-run + # https://wiki.nixos.org/wiki/Appimage#Register_AppImage_files_as_a_binary_type_to_binfmt_misc + programs.appimage = { + enable = true; + binfmt = true; + }; }