aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-03 02:45:37 -0700
committerFuwn <[email protected]>2024-09-03 02:45:37 -0700
commitf8894b0fb4373615af1daf7b37d9feea1627e005 (patch)
tree8d9b9eb8538ba47857ad48ffcea947e82b78aea3
parentfeat(content): add nvme troubles part 3 (diff)
downloadlocus-f8894b0fb4373615af1daf7b37d9feea1627e005.tar.xz
locus-f8894b0fb4373615af1daf7b37d9feea1627e005.zip
chore(nix): add cargo-watch
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 2c0457b..2f1c310 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,6 +8,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
};
+
outputs =
{
self,
@@ -22,13 +23,14 @@
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
in
- rec {
+ {
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rust-bin.nightly."2024-07-17".default
cargo-make
openssl.dev
pkg-config
+ cargo-watch
];
};
}