aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 114ffc8..f6f15c6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,7 +4,11 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
systems.url = "github:nix-systems/default";
- flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
+
+ flake-compat = {
+ url = "github:edolstra/flake-compat";
+ flake = false;
+ };
flake-utils = {
url = "github:numtide/flake-utils";
@@ -13,7 +17,11 @@
pre-commit-hooks = {
url = "github:cachix/git-hooks.nix";
- inputs.nixpkgs.follows = "nixpkgs";
+
+ inputs = {
+ flake-compat.follows = "flake-compat";
+ nixpkgs.follows = "nixpkgs";
+ };
};
};