refactor!: change devShell name

This commit is contained in:
Moritz Böhme 2025-02-23 17:32:57 +01:00
parent 3b4ee0af06
commit c2a9005577
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 7 additions and 2 deletions

2
.envrc
View file

@ -1 +1 @@
use flake
use flake .#dev

View file

@ -49,7 +49,7 @@
'';
};
devShells.default = pkgs.mkShell.override { inherit stdenv; }
devShells.dev = pkgs.mkShell.override { inherit stdenv; }
{
nativeBuildInputs = with pkgs; [
# Add additional build inputs here
@ -62,6 +62,11 @@
]);
RUST_SRC_PATH = "${toolchain.rust-src}/lib/rustlib/src/rust/library";
};
devShells.default = pkgs.mkShell {
nativeBuildInputs = [
self.packages.${pkgs.system}.default
];
};
}
);
}