diff options
| author | Fuwn <[email protected]> | 2024-09-30 15:09:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-30 15:09:12 -0700 |
| commit | 0893cc53fdde3482524348d9fe14751da04c4c7a (patch) | |
| tree | 69a2f97e6c95acd6799035fc5aaeb5053b12ade3 | |
| parent | chore(flake): replace openssl with libressl 3.9 (diff) | |
| download | locus-0893cc53fdde3482524348d9fe14751da04c4c7a.tar.xz locus-0893cc53fdde3482524348d9fe14751da04c4c7a.zip | |
format(flake): move overlays into nixpkgs
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -19,8 +19,11 @@ flake-utils.lib.eachDefaultSystem ( system: let - overlays = [ (import rust-overlay) ]; - pkgs = import nixpkgs { inherit system overlays; }; + pkgs = import nixpkgs { + inherit system; + + overlays = [ (import rust-overlay) ]; + }; in { devShell = |