restructured modules, toggling them, overlays
This commit is contained in:
11
modules/dev/haskell.nix
Normal file
11
modules/dev/haskell.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
options = { myHaskell.enable = lib.mkEnableOption "enable"; };
|
||||
config = lib.mkIf config.myHaskell.enable {
|
||||
users.users.jawz.packages = with pkgs; ([
|
||||
ghc # compiler
|
||||
haskell-language-server # lsp
|
||||
]);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user