From 15205abbcf19c46b4105585a87054a1ac797a76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Wed, 26 Mar 2025 17:45:23 +0100 Subject: [PATCH] feat: add proper appimage support --- SwarselSystems.org | 15 +++++++++++++++ profiles/nixos/common/appimage.nix | 9 +++++++++ 2 files changed, 24 insertions(+) create mode 100644 profiles/nixos/common/appimage.nix diff --git a/SwarselSystems.org b/SwarselSystems.org index 354be11..3cc136d 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -6298,6 +6298,21 @@ I am using distrobox to quickly circumvent isses that I cannot immediately solve } #+end_src +**** Appimage +Adds the necessary tools to allow .appimage programs easily. + +#+begin_src nix :tangle profiles/nixos/common/appimage.nix + _: + { + + programs.appimage = { + enable = true; + binfmt = true; + }; + + } +#+end_src + **** Handle lid switch correctly :PROPERTIES: :CUSTOM_ID: h:a5a0d84e-c7b3-4164-a4c7-2e2d8ada69cd diff --git a/profiles/nixos/common/appimage.nix b/profiles/nixos/common/appimage.nix new file mode 100644 index 0000000..5d4606e --- /dev/null +++ b/profiles/nixos/common/appimage.nix @@ -0,0 +1,9 @@ +_: +{ + + programs.appimage = { + enable = true; + binfmt = true; + }; + +}