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; + }; + +}