summaryrefslogtreecommitdiff
path: root/nix/modules/home/default.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-09-08 16:51:44 -0700
committerPreston Pan <ret2pop@gmail.com>2025-09-08 16:51:44 -0700
commit9b3a166490bb5f88a5cdea55c6676d330db72fc2 (patch)
tree39c4b0d743758ae402abeb342211f3b0760e30d9 /nix/modules/home/default.nix
parentb75cb4b1706b3abd5aa824d6e8b7779a8daa14c3 (diff)
commit before nix flake update
Diffstat (limited to 'nix/modules/home/default.nix')
-rw-r--r--nix/modules/home/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nix/modules/home/default.nix b/nix/modules/home/default.nix
index 596e236..69e26a7 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-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";
@@ -129,6 +130,10 @@
(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
@@ -191,6 +196,7 @@
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;