Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.
1{
2 outputs = inputs: import ./. inputs;
3
4 nixConfig = {
5 extra-trusted-public-keys = [
6 "dendrix.cachix.org-1:OdDiPPnm0gukv156krv4p5ZWWcCpIxnlnAFvSqX1H3c="
7 ];
8 extra-substituters = [ "https://dendrix.cachix.org" ];
9 };
10
11 inputs = {
12 dendrix.flake = false;
13 dendrix.url = "path:..";
14 devshell.inputs.nixpkgs.follows = "nixpkgs";
15 devshell.url = "github:numtide/devshell";
16 files.url = "github:mightyiam/files";
17 flake-compat.url = "github:edolstra/flake-compat";
18 flake-parts.url = "github:hercules-ci/flake-parts";
19 import-tree.url = "github:vic/import-tree";
20 nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
21 systems.url = "github:nix-systems/default";
22 treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
23 treefmt-nix.url = "github:numtide/treefmt-nix";
24 };
25}