-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
95 lines (90 loc) · 2.26 KB
/
flake.nix
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = {nixpkgs, ...}: let
forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems
(system:
f rec {
mergeModuleAttrs = {
attr,
nullValue,
}:
pkgs.lib.lists.flatten
(map (module: module.${attr} or nullValue) modules);
modules =
map (module: (import ./nix/${module} {inherit pkgs;}))
(
if (builtins.pathExists ./nix)
then (builtins.attrNames (builtins.readDir ./nix))
else []
);
pkgs = import nixpkgs {inherit system;};
});
supportedSystems = [
"x86_64-darwin"
"x86_64-linux"
];
in {
devShells = forEachSupportedSystem ({
mergeModuleAttrs,
modules,
pkgs,
}: {
default = pkgs.mkShell ({
packages = with pkgs;
[
alejandra
ansible-language-server
bat
cocogitto
deadnix
delta
eza
fd
flake-checker
fzf
gh
git
glab
just
lychee
markdown-oxide
marksman
nb
nil
nodePackages.prettier
nushell
pre-commit
python312Packages.pre-commit-hooks
ripgrep
serie
statix
stylelint
taplo
tokei
vscode-langservers-extracted
yaml-language-server
yamlfmt
]
++ mergeModuleAttrs {
attr = "packages";
nullValue = [];
};
shellHook = with pkgs;
lib.concatLines (
["pre-commit install --hook-type commit-msg"]
++ mergeModuleAttrs {
attr = "shellHook";
nullValue = "";
}
);
}
// builtins.foldl'
(a: b: a // b)
{}
(map
(module: builtins.removeAttrs module ["packages" "shellHook"])
modules));
});
};
}