diff options
| author | Fuwn <[email protected]> | 2024-09-03 02:45:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-03 02:45:37 -0700 |
| commit | f8894b0fb4373615af1daf7b37d9feea1627e005 (patch) | |
| tree | 8d9b9eb8538ba47857ad48ffcea947e82b78aea3 | |
| parent | feat(content): add nvme troubles part 3 (diff) | |
| download | locus-f8894b0fb4373615af1daf7b37d9feea1627e005.tar.xz locus-f8894b0fb4373615af1daf7b37d9feea1627e005.zip | |
chore(nix): add cargo-watch
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 ]; }; } |