From c42111017279b2bc09ab0ef40b331b80929a1ec3 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Wed, 9 Mar 2022 13:49:35 -0500 Subject: [PATCH] Remove unnecessary flake-compat input --- flake.lock | 17 ----------------- flake.nix | 5 +---- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/flake.lock b/flake.lock index e15f5a8..b1039cb 100644 --- a/flake.lock +++ b/flake.lock @@ -1,21 +1,5 @@ { "nodes": { - "flake-compat": { - "flake": false, - "locked": { - "lastModified": 1627913399, - "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, "flake-utils": { "locked": { "lastModified": 1638122382, @@ -48,7 +32,6 @@ }, "root": { "inputs": { - "flake-compat": "flake-compat", "flake-utils": "flake-utils", "nixpkgs": "nixpkgs" } diff --git a/flake.nix b/flake.nix index e93ac51..4972117 100644 --- a/flake.nix +++ b/flake.nix @@ -8,9 +8,6 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; - - flake-compat.url = "github:edolstra/flake-compat"; - flake-compat.flake = false; }; outputs = { self, nixpkgs, flake-utils, ... }: @@ -56,4 +53,4 @@ inputsFrom = builtins.attrValues self.packages.${system}; }; }); -} \ No newline at end of file +}