feat: add proper appimage support

This commit is contained in:
Leon Schwarzäugl 2025-03-26 17:45:23 +01:00
parent 14f9bbf832
commit 15205abbcf
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 24 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,9 @@
_:
{
programs.appimage = {
enable = true;
binfmt = true;
};
}