modules: Add AppImage support

This commit is contained in:
2026-05-20 00:06:31 +02:00
parent ea7a0cf4b3
commit 59ae67fcdb
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
{
flake.modules.nixos.appimage = { pkgs, ...}: {
programs.appimage = {
enable = true;
binfmt = true;
};
};
}