feat: add appimage support for marpa and gampo

This commit is contained in:
2025-06-21 23:53:27 +02:00
parent 2409d80f81
commit 1ff6cf25ef
5 changed files with 24 additions and 7 deletions

15
modules/appimage.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pkgs,
lib,
config,
...
}:
with lib; let
cfg = config.modules.appimage;
in {
options.modules.appimage.enable = mkEnableOption "Enables AppImage support";
config.programs.appimage = mkIf cfg.enable {
inherit (cfg) enable;
binfmt = true;
};
}

View File

@@ -9,6 +9,7 @@ with lib; let
in {
imports = [
./amdgpu.nix
./appimage.nix
./boot.nix
./locale.nix
./networking.nix