flake: Don't use deprecated flake output schemas

This commit is contained in:
atse 2024-06-27 16:49:00 +08:00
parent 44e9130010
commit 7333d2cea5
1 changed files with 2 additions and 2 deletions

View File

@ -51,13 +51,14 @@
in {
packages.x86_64-linux = {
inherit thermostat;
default = thermostat;
};
hydraJobs = {
inherit thermostat;
};
devShell.x86_64-linux = pkgs.mkShell {
devShells.x86_64-linux.default = pkgs.mkShell {
name = "thermostat-dev-shell";
buildInputs = with pkgs; [
rust openocd dfu-util
@ -65,6 +66,5 @@
numpy matplotlib
]);
};
defaultPackage.x86_64-linux = thermostat;
};
}