Skip to content
/ dendrix Public

Commit 50db9ae

Browse files
committed
Use flake-file dendritic module
1 parent a89f86c commit 50db9ae

File tree

3 files changed

+152
-63
lines changed

3 files changed

+152
-63
lines changed

templates/default/flake.lock

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

templates/default/flake.nix

Lines changed: 36 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,40 @@
1+
# DO-NOT-EDIT. This file was auto-generated using github:vic/flake-file.
2+
# Use `nix run .#write-flake` to regenerate it.
13
{
2-
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
3-
4+
description = "A dendritic setup.";
45
inputs = {
5-
dendrix.url = "path:./../..";
6-
flake-parts.url = "github:hercules-ci/flake-parts";
7-
import-tree.url = "github:vic/import-tree";
8-
systems.url = "github:nix-systems/default";
9-
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
6+
allfollow = {
7+
url = "github:spikespaz/allfollow";
8+
};
9+
devshell = {
10+
url = "github:numtide/devshell";
11+
};
12+
flake-file = {
13+
url = "github:vic/flake-file";
14+
};
15+
flake-parts = {
16+
url = "github:hercules-ci/flake-parts";
17+
};
18+
import-tree = {
19+
url = "github:vic/import-tree";
20+
};
21+
nixpkgs = {
22+
url = "github:nixos/nixpkgs/nixpkgs-unstable";
23+
};
24+
rust-overlay = {
25+
inputs = {
26+
nixpkgs = {
27+
follows = "nixpkgs";
28+
};
29+
};
30+
url = "github:oxalica/rust-overlay";
31+
};
32+
systems = {
33+
url = "github:nix-systems/default";
34+
};
35+
treefmt-nix = {
36+
url = "github:numtide/treefmt-nix";
37+
};
1038
};
39+
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
1140
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{ inputs, ... }:
22
{
33
imports = [
4-
inputs.flake-parts.flakeModules.modules
4+
inputs.flake-file.flakeModules.dendritic
55
];
66

7-
systems = import inputs.systems;
7+
flake-file.description = "A dendritic setup.";
88
}

0 commit comments

Comments
 (0)