summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-05-19 13:30:29 +0200
committerAlan Pearce2024-05-19 13:30:29 +0200
commit0abb318c351a8bdb6cac8998d737bd81340cb0c0 (patch)
tree3eb67193656406174bbb4270d15333fdfacc00f6
parentef4c25fdc267f6ce6ed2d29f1eddf4ee7ab7c773 (diff)
downloadnixfiles-0abb318c351a8bdb6cac8998d737bd81340cb0c0.tar.lz
nixfiles-0abb318c351a8bdb6cac8998d737bd81340cb0c0.tar.zst
nixfiles-0abb318c351a8bdb6cac8998d737bd81340cb0c0.zip
fix error applying enchant override
-rw-r--r--overlays/extra-packages.nix4
-rw-r--r--overlays/personal.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/overlays/extra-packages.nix b/overlays/extra-packages.nix
index 76642078..6c64c24b 100644
--- a/overlays/extra-packages.nix
+++ b/overlays/extra-packages.nix
@@ -13,8 +13,4 @@ self: super: {
         '';
       };
   });
-  enchant = super.personal.enchant-configurable.override {
-    withHspell = false;
-    withAspell = false;
-  };
 }
diff --git a/overlays/personal.nix b/overlays/personal.nix
index 2a78760e..9eae64c4 100644
--- a/overlays/personal.nix
+++ b/overlays/personal.nix
@@ -6,4 +6,8 @@ let
 in
 {
   inherit personal;
+  enchant = personal.enchant-configurable.override {
+    withHspell = false;
+    withAspell = false;
+  };
 }