In reply to @me:indeednotjames.comI highly recommend setting boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; in your desktop's configuration.nix if you do aarch64 stuff. This will enable cross compilation, meaning you will be able to eval and build your ARM VPS on x86_64 :)
I highly recommend setting boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; in your desktop's configuration.nix if you do aarch64 stuff.
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
configuration.nix
This will enable cross compilation, meaning you will be able to eval and build your ARM VPS on x86_64 :)
In reply to @obsidianical:matrix.orgokay that indeed fixes it, thanks