diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
| commit | ba6373ebfbcafc99ce7a4fa100b2a26fc3bc2731 (patch) | |
| tree | 31675c3c370dc77ce1afe93cfa26b72a2ec4f0b9 /nix/modules/home/default.nix | |
| parent | 0321f74a87df68584beb3c19a99969f9a794bb85 (diff) | |
add two new blog posts; bitcoin node; haskell devel
Diffstat (limited to 'nix/modules/home/default.nix')
| -rw-r--r-- | nix/modules/home/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/modules/home/default.nix b/nix/modules/home/default.nix index d2277da..4f1e7d4 100644 --- a/nix/modules/home/default.nix +++ b/nix/modules/home/default.nix @@ -37,6 +37,7 @@ lang-js.enable = lib.mkEnableOption "Enables javascript language support"; lang-nix.enable = lib.mkEnableOption "Enables nix language support"; lang-coq.enable = lib.mkEnableOption "Enables coq language support"; + lang-haskell.enable = lib.mkEnableOption "Enables haskell language support"; crypto.enable = lib.mkEnableOption "Enables various cryptocurrency wallets"; art.enable = lib.mkEnableOption "Enables various art programs"; @@ -86,6 +87,7 @@ bun yarn typescript + typescript-language-server vscode-langservers-extracted ]) else []) ++ @@ -114,6 +116,12 @@ bash-language-server ]) else []) ++ + (if config.monorepo.profiles.lang-haskell.enable then (with pkgs; [ + haskell-language-server + haskellPackages.hlint + ghc + ]) else []) + ++ (if config.monorepo.profiles.lang-coq.enable then (with pkgs; [ coq ]) else []) @@ -156,6 +164,7 @@ inkscape kdenlive kicad + reaper ]) else []); monorepo.profiles = { @@ -175,6 +184,7 @@ lang-js.enable = lib.mkDefault (true && config.monorepo.profiles.enable); lang-nix.enable = lib.mkDefault (true && config.monorepo.profiles.enable); lang-coq.enable = lib.mkDefault (true && config.monorepo.profiles.enable); + lang-haskell.enable = lib.mkDefault (true && config.monorepo.profiles.enable); crypto.enable = lib.mkDefault (true && config.monorepo.profiles.enable); art.enable = lib.mkDefault (true && config.monorepo.profiles.enable); |
