-
Notifications
You must be signed in to change notification settings - Fork 11
/
nixkell.toml
50 lines (44 loc) · 930 Bytes
/
nixkell.toml
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
# Nixkell config
[ghc]
# Warning: if you don't choose one from the currently available versions
# https://github.com/NixOS/nixpkgs/tree/master/pkgs/development/compilers/ghc
# you will most likely have to compile *everything* yourself.
version = "9.8.2"
# optimise = true
# profiling = false
# benckmark = false
# List of tools to be available in the nix shell
[env]
# We want these tools to be built with our haskell
haskell_tools = [
"cabal-install",
"haskell-language-server",
"hlint",
"ormolu",
]
tools = [
"cabal2nix",
"nil",
"niv",
"nixpkgs-fmt",
"shellcheck",
"shfmt",
"treefmt",
]
# List of plugins the you don't want to build
[hls]
disable_plugins = [
# "fourmolu",
# "floskell",
# "stan",
]
# These files and directories will be excluded from the nix build,
# meaning there is no nix rebuild when changing them.
[ignore]
files = [
"README.md",
]
paths = [
".github",
".vscode",
]