-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
61 lines (51 loc) · 1.42 KB
/
flake.nix
File metadata and controls
61 lines (51 loc) · 1.42 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
{
inputs = {
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
flake-parts = {
url = "https://flakehub.com/f/hercules-ci/flake-parts/0.1";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
flake-root.url = "https://flakehub.com/f/srid/flake-root/0.1";
files.url = "github:mightyiam/files";
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
fourmolu-nix.url = "github:jedimahdi/fourmolu-nix";
github-actions-nix = {
url = "https://flakehub.com/f/synapdeck/github-actions-nix/0.1";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
haskell-flake.url = "github:srid/haskell-flake";
hk = {
url = "git+https://github.com/jdx/hk?submodules=1";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-unit = {
url = "github:nix-community/nix-unit";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
treefmt-nix.follows = "treefmt-nix";
};
};
treefmt-nix = {
url = "https://flakehub.com/f/numtide/treefmt-nix/0.1";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ {
nixpkgs,
flake-parts,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = nixpkgs.lib.systems.flakeExposed;
imports = [
./nix/flake
];
};
}