Add aarch64-linux installer app

This commit is contained in:
2026-04-07 08:12:04 +02:00
parent 4cfaea86db
commit 0264d47ecb

View File

@@ -156,9 +156,10 @@
# Installer Script # Installer Script
# ============================================ # ============================================
apps.${defaultSystem}.installer = { apps = let
mkInstaller = system: {
type = "app"; type = "app";
program = toString (pkgs.writeShellScript "installer" '' program = toString ((mkPkgs system).writeShellScript "installer" ''
set -e set -e
if [ -z "$1" ]; then if [ -z "$1" ]; then
@@ -189,6 +190,10 @@
fi fi
''); '');
}; };
in {
x86_64-linux.installer = mkInstaller "x86_64-linux";
aarch64-linux.installer = mkInstaller "aarch64-linux";
};
}; };
} }