summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index aced115..c3a03ba 100644
--- a/flake.nix
+++ b/flake.nix
@@ -28,6 +28,18 @@
);
in
{
+ devShells = forAllSystems (
+ system:
+ let
+ pkgs = nixpkgsFor.${system}.native;
+ in
+ {
+ firmware-build = pkgs.callPackage ./firmware-build-shell.nix {
+ toolchain = self.packages.${system}.default;
+ };
+ }
+ );
+
formatter = forAllSystems (system: nixpkgsFor.${system}.native.nixfmt-rfc-style);
packages = forAllSystems (