Disable nom for non supported architectures

This commit is contained in:
Andrea Ciceri 2023-02-05 14:15:43 +01:00
parent aaeeb136db
commit f187dd631f
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654

View file

@ -50,10 +50,10 @@
agenix.overlay agenix.overlay
comma.overlays.default comma.overlays.default
nur.overlay nur.overlay
(_: _: { (_: self: {
inherit emacsSource; inherit emacsSource;
helix = helix.packages.${pkgs.system}.helix-dev; helix = helix.packages.${pkgs.system}.helix-dev;
nom = nom.packages.${pkgs.system}.default; nom = nom.packages.${pkgs.system}.default or (self.runCommandLocal "empty" {} "touch $out");
}) })
]; ];
}) })