From 7b66d5a4b51f1aadd61bd0a015cbf444a160bf09 Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 31 Jul 2025 22:07:50 -0400 Subject: [PATCH] Add appimage. Fix appimage. --- nodes/hosts/common/configuration.nix | 1 + nodes/hosts/common/system/appimage.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 nodes/hosts/common/system/appimage.nix diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 108d75e..72c7ccc 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -27,6 +27,7 @@ ./services/displaymanager.nix ./services/nix-flatpak.nix ./services/sound.nix + ./system/appimage.nix ./system/bluetooth.nix ./system/bootloader.nix ./system/environment.nix diff --git a/nodes/hosts/common/system/appimage.nix b/nodes/hosts/common/system/appimage.nix new file mode 100644 index 0000000..a665ac7 --- /dev/null +++ b/nodes/hosts/common/system/appimage.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.appimage.enable = true; + programs.appimage.binfmt = true; +} +