Skip to content

Commit ab6852d

Browse files
committed
build: Reduce duplication in nix flake input tree
1 parent 2e96852 commit ab6852d

2 files changed

Lines changed: 33 additions & 69 deletions

File tree

flake.lock

Lines changed: 24 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
{
22
inputs = {
33
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
4-
opengen.url = "github:OpenGen/nix";
5-
systems.url = "github:nix-systems/default";
6-
clj-nix.url = "github:jlesquembre/clj-nix";
74
flake-parts = {
85
url = "github:hercules-ci/flake-parts";
96
};
7+
opengen = {
8+
url = "github:OpenGen/nix";
9+
inputs.flake-parts.follows = "flake-parts";
10+
};
11+
systems.url = "github:nix-systems/default";
12+
clj-nix = {
13+
url = "github:jlesquembre/clj-nix";
14+
inputs.nixpkgs.follows = "nixpkgs";
15+
};
1016
};
1117

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

0 commit comments

Comments
 (0)