From 80530a876e5e179455d2263aaff327ae2e51e3e4 Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Tue, 16 Sep 2025 06:39:53 +0100 Subject: [PATCH] wip --- hosts/arrakis/default.nix | 1 + hosts/common/features/appimage.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 hosts/common/features/appimage.nix diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index 4ffe907..a07f786 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -15,6 +15,7 @@ ../common/features/display ../common/features/pipewire.nix ../common/features/docker.nix + ../common/features/appimage.nix ../common/features/fonts.nix ../common/features/nix-ld.nix ../common/features/bluetooth.nix diff --git a/hosts/common/features/appimage.nix b/hosts/common/features/appimage.nix new file mode 100644 index 0000000..b4c3a67 --- /dev/null +++ b/hosts/common/features/appimage.nix @@ -0,0 +1,7 @@ +{ config, lib, ... }: +{ + programs.appimage = { + enable = true; + binfmt = true; + }; +}