Skip to content

Commit

Permalink
Make nixpkgs & flake-utils consistent across inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Mar 20, 2024
1 parent 15b4295 commit 6f3bba0
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 165 deletions.
195 changes: 33 additions & 162 deletions flake.lock

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

31 changes: 28 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,30 @@

flake-utils.url = "github:numtide/flake-utils";

ecsls.url = "github:Sigmapitech/ecsls";
hosts.url = "github:StevenBlack/hosts";
vera-clang = {
url = "github:Sigmapitech/vera-clang";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};

ecsls = {
url = "github:Sigmapitech/ecsls";
inputs = {
nixpkgs.follows = "nixpkgs";
utils.follows = "flake-utils";
# Cannot use nested vera-clang.inputs.nixpkgs.follows
# See https://github.com/NixOS/nix/issues/5790
vera-clang.follows = "vera-clang";
};
};

hosts = {
url = "github:StevenBlack/hosts";
inputs.nixpkgs.follows = "nixpkgs";
};

nixos-hardware.url = "github:NixOS/nixos-hardware";

home-manager = {
Expand All @@ -18,7 +40,10 @@

pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
};

Expand Down

0 comments on commit 6f3bba0

Please sign in to comment.