add nix config

This commit is contained in:
Nicholas Orlowsky 2025-02-25 16:24:07 -05:00
parent f6b3c2dc50
commit ce2b373313
4 changed files with 15 additions and 3 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
pkgs' = (import <nixpkgs> {}).pkgsCross.i686-embedded;
pkgs = (import <nixpkgs> {});
in
pkgs'.mkShell {
nativeBuildInputs = [
pkgs.cdrkit
pkgs.qemu
];
}