aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-30 15:09:12 -0700
committerFuwn <[email protected]>2024-09-30 15:09:12 -0700
commit0893cc53fdde3482524348d9fe14751da04c4c7a (patch)
tree69a2f97e6c95acd6799035fc5aaeb5053b12ade3
parentchore(flake): replace openssl with libressl 3.9 (diff)
downloadlocus-0893cc53fdde3482524348d9fe14751da04c4c7a.tar.xz
locus-0893cc53fdde3482524348d9fe14751da04c4c7a.zip
format(flake): move overlays into nixpkgs
-rw-r--r--flake.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 55f0e67..524f3c8 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 =