Skip to content

Commit

Permalink
Remove nixpkgs.follows in favor of a more traditional setup
Browse files Browse the repository at this point in the history
The risk of not having something in the nix-index cache should be small,
and not worth the issues this setup causes.
  • Loading branch information
thiagokokada committed Aug 2, 2024
1 parent ed2c691 commit 5d41c9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
15 changes: 7 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
flake-compat.url = "github:edolstra/flake-compat";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
nix-index-database.url = "github:nix-community/nix-index-database";
nixpkgs.follows = "nix-index-database/nixpkgs";
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};

outputs = { self, nixpkgs, flake-utils, ... }:
Expand Down

0 comments on commit 5d41c9c

Please sign in to comment.