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
+1 -1
View File
@@ -12,7 +12,7 @@
home-vpn home-vpn
opentablet opentablet
#TODO: laptop specific aspects like powertop appimage
]; ];
}; };
} }
+8
View File
@@ -0,0 +1,8 @@
{
flake.modules.nixos.appimage = { pkgs, ...}: {
programs.appimage = {
enable = true;
binfmt = true;
};
};
}