This commit is contained in:
Miguel Palhas
2025-09-16 06:39:53 +01:00
parent a255a6969e
commit 80530a876e
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@
../common/features/display
../common/features/pipewire.nix
../common/features/docker.nix
../common/features/appimage.nix
../common/features/fonts.nix
../common/features/nix-ld.nix
../common/features/bluetooth.nix
+7
View File
@@ -0,0 +1,7 @@
{ config, lib, ... }:
{
programs.appimage = {
enable = true;
binfmt = true;
};
}