Compare commits

..

No commits in common. "1ae6a6fdd49bae1247ae706ea411e4a07f110034" and "44e9130010a0eb74c94a10a934eed1032d0c0aef" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -51,20 +51,20 @@
in {
packages.x86_64-linux = {
inherit thermostat;
default = thermostat;
};
hydraJobs = {
inherit thermostat;
};
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
devShell.x86_64-linux = pkgs.mkShell {
name = "thermostat-dev-shell";
packages = with pkgs; [
buildInputs = with pkgs; [
rust openocd dfu-util
] ++ (with python3Packages; [
numpy matplotlib
]);
};
defaultPackage.x86_64-linux = thermostat;
};
}