Got the firmware to compile and produce something vaguely sensible.

This commit is contained in:
2022-04-15 17:28:01 +02:00
parent eae98a8f39
commit 574a60cbb6
5 changed files with 164 additions and 41 deletions

10
firmware/shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.stdenv
# keep this line if you use bash
pkgs.bashInteractive
];
}