mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat: add proper appimage support
This commit is contained in:
parent
14f9bbf832
commit
15205abbcf
2 changed files with 24 additions and 0 deletions
|
|
@ -6298,6 +6298,21 @@ I am using distrobox to quickly circumvent isses that I cannot immediately solve
|
||||||
}
|
}
|
||||||
#+end_src
|
#+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
|
**** Handle lid switch correctly
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:CUSTOM_ID: h:a5a0d84e-c7b3-4164-a4c7-2e2d8ada69cd
|
:CUSTOM_ID: h:a5a0d84e-c7b3-4164-a4c7-2e2d8ada69cd
|
||||||
|
|
|
||||||
9
profiles/nixos/common/appimage.nix
Normal file
9
profiles/nixos/common/appimage.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
_:
|
||||||
|
{
|
||||||
|
|
||||||
|
programs.appimage = {
|
||||||
|
enable = true;
|
||||||
|
binfmt = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue