We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8e55a commit 3c27b5bCopy full SHA for 3c27b5b
flake-module.nix
@@ -75,8 +75,17 @@ in
75
};
76
enableHLSCheck = mkOption {
77
type = types.bool;
78
- description = ''Whether to enable a flake check to verify if HLS works (equivalent of `nix develop -i -c haskell-language-server`).'';
79
- default = true;
+ description = ''
+ Whether to enable a flake check to verify that HLS works.
80
+
81
+ This is equivalent to `nix develop -i -c haskell-language-server`.
82
83
+ Note that, HLS will try to access the network through Cabal (see
84
+ https://github.com/haskell/haskell-language-server/issues/3128),
85
+ therefore sandboxing must be disabled when evaluating this
86
+ check.
87
+ '';
88
+ default = false;
89
90
91
});
0 commit comments