fix: shoukei - filter packages that do not support aarch64

This commit is contained in:
Ryan Yin
2025-07-13 02:17:12 +08:00
parent 264611e334
commit 710ddc3263
5 changed files with 92 additions and 79 deletions

View File

@@ -1,7 +1,7 @@
{pkgs-stable, ...}: {
home.packages = with pkgs-stable; [
{pkgs, ...}: {
home.packages = with pkgs; (lib.optionals pkgs.stdenv.isx86_64 [
# https://joplinapp.org/help/
joplin # joplin-cli
joplin-desktop
];
]);
}