Add aarch64 support

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-03-07 12:43:57 +01:00
parent d08f067665
commit 87327a573a
No known key found for this signature in database
GPG key ID: E13DFD4B47127951
7 changed files with 30 additions and 8 deletions

View file

@ -1,7 +1,9 @@
system:
# docker images run on Linux
assert builtins.elem system ["x86_64-linux" "aarch64-linux"];
import <nixpkgs> {
# docker images run on Linux
system = "x86_64-linux";
config = { };
inherit system;
overlays = [
(import ./overlay.nix)
];