diff options
author | Joris | 2022-09-03 22:38:17 +0200 |
---|---|---|
committer | Joris | 2022-09-03 22:39:08 +0200 |
commit | 60a4c7015058d169e88490dfec36e8b2c85ae02e (patch) | |
tree | 58df2b41e4445520ed1a25a14fe91881f7fe0258 /flake.nix | |
parent | e9fea9920edfb4cf68b08fab9e55fc0b06b993c8 (diff) |
Upgrade flake and cargo dependencies
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,9 +2,10 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; - rust-overlay.url = "github:oxalica/rust-overlay"; - rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; - rust-overlay.inputs.flake-utils.follows = "flake-utils"; + rust-overlay = { + url = "github:oxalica/rust-overlay"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }: |