Skip to content

Commit

Permalink
build: Reduce duplication in nix flake input tree
Browse files Browse the repository at this point in the history
  • Loading branch information
ships committed May 10, 2024
1 parent 9e38224 commit 55d0d74
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 69 deletions.
90 changes: 24 additions & 66 deletions flake.lock

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

12 changes: 9 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
opengen.url = "github:OpenGen/nix";
systems.url = "github:nix-systems/default";
clj-nix.url = "github:jlesquembre/clj-nix";
flake-parts = {
url = "github:hercules-ci/flake-parts";
};
opengen = {
url = "github:OpenGen/nix";
inputs.flake-parts.follows = "flake-parts";
};
systems.url = "github:nix-systems/default";
clj-nix = {
url = "github:jlesquembre/clj-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = inputs@{ flake-parts, systems , opengen, ... }:
Expand Down

0 comments on commit 55d0d74

Please sign in to comment.