diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-09-08 16:51:44 -0700 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-09-08 16:51:44 -0700 |
| commit | 9b3a166490bb5f88a5cdea55c6676d330db72fc2 (patch) | |
| tree | 39c4b0d743758ae402abeb342211f3b0760e30d9 /config | |
| parent | b75cb4b1706b3abd5aa824d6e8b7779a8daa14c3 (diff) | |
commit before nix flake update
Diffstat (limited to 'config')
| -rw-r--r-- | config/nix.org | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/nix.org b/config/nix.org index 828363b..5ad33fb 100644 --- a/config/nix.org +++ b/config/nix.org @@ -1401,6 +1401,7 @@ I have many imports that we'll go through next. 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-lean.enable = lib.mkEnableOption "Enables lean language support"; lang-haskell.enable = lib.mkEnableOption "Enables haskell language support"; crypto.enable = lib.mkEnableOption "Enables various cryptocurrency wallets"; @@ -1493,6 +1494,10 @@ I have many imports that we'll go through next. (if config.monorepo.profiles.lang-coq.enable then (with pkgs; [ coq ]) else []) + ++ + (if config.monorepo.profiles.lang-lean.enable then (with pkgs; [ + lean4 + ]) else []) ++ (if config.monorepo.profiles.lang-nix.enable then (with pkgs; [ nil @@ -1555,6 +1560,7 @@ I have many imports that we'll go through next. lang-js.enable = lib.mkDefault config.monorepo.profiles.enable; lang-nix.enable = lib.mkDefault config.monorepo.profiles.enable; lang-coq.enable = lib.mkDefault config.monorepo.profiles.enable; + lang-lean.enable = lib.mkDefault config.monorepo.profiles.enable; lang-haskell.enable = lib.mkDefault config.monorepo.profiles.enable; crypto.enable = lib.mkDefault config.monorepo.profiles.enable; |
