-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
75 lines (59 loc) · 1.8 KB
/
flake.nix
File metadata and controls
75 lines (59 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
nixConfig = {
abort-on-warn = true;
extra-experimental-features = [ "pipe-operators" ];
};
inputs = {
flake-parts = {
url = "github:hercules-ci/flake-parts?rev=0010412d62a25d959151790968765a70c436598b";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
asset-for-testing = {
flake = false;
url = "http://httpbin.org/robots.txt";
};
files.url = "github:mightyiam/files";
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "dedupe_flake-compat";
};
};
highlightjs-stylesheet = {
flake = false;
url = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/base16/gruvbox-dark-hard.min.css";
};
highlightjs-esmodule = {
flake = false;
url = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/es/highlight.min.js";
};
highlightjs-nix = {
flake = false;
url = "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/es/languages/nix.min.js";
};
import-tree.url = "github:vic/import-tree";
make-shell = {
url = "github:nicknovitski/make-shell";
inputs.flake-compat.follows = "dedupe_flake-compat";
};
nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz";
systems.url = "github:nix-systems/default";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
# _additional_ `inputs` only for deduplication
inputs = {
dedupe_flake-compat.url = "github:edolstra/flake-compat";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
_module.args.rootPath = ./.;
imports = [
(inputs.import-tree ./modules)
];
};
}