-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
116 lines (108 loc) · 2.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nushell-syntax = {
type = "github";
owner = "stevenxxiu";
repo = "sublime_text_nushell";
flake = false;
};
};
outputs = {
nixpkgs,
nushell-syntax,
...
}: 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;}))
(builtins.attrNames (builtins.readDir ./nix));
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
statix
stylelint
taplo
tokei
vscode-langservers-extracted
yaml-language-server
yamlfmt
]
++ mergeModuleAttrs {
attr = "packages";
nullValue = [];
};
shellHook = with pkgs;
lib.concatLines (
[
''
nushell_syntax="${nushell-syntax}/nushell.sublime-syntax"
bat_config_dir=".config/bat"
bat_syntax_dir="''${bat_config_dir}/syntaxes"
bat_nushell_syntax="''${bat_syntax_dir}/nushell.sublime-syntax"
mkdir -p "''${bat_syntax_dir}"
cp "''${nushell_syntax}" "''${bat_nushell_syntax}"
bat cache --build --source "''${bat_config_dir}"
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));
});
};
}