about summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorVika Shleina <vika@fireburn.ru>2021-07-19 05:51:07 +0300
committerVika Shleina <vika@fireburn.ru>2021-07-19 05:51:47 +0300
commit64d45bd3ae244e10521db4693a52ffa3322bb410 (patch)
tree350dea50a134bea159d4673c40152c61c9fac8e3 /flake.nix
parent5476bb17dc428bcef8163c26c320e5c3ef1ff5d5 (diff)
Fixed flake-utils?
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 3ff32f9..0ea2d37 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,12 +1,16 @@
 {
   inputs = {
-    flake-utils.url = "github:numtide/flake-utils";
+    flake-utils = {
+      type = "github";
+      owner = "numtide";
+      repo = "flake-utils";
+      ref = "master";
+    };
     rust = {
       type = "github";
       owner = "oxalica";
       repo = "rust-overlay";
       ref = "master";
-      inputs.flake-utils.follows = "flake-utils";
       inputs.nixpkgs.follows = "nixpkgs";
     };
     naersk = {