all repos — nixfiles @ 0abb318c351a8bdb6cac8998d737bd81340cb0c0

System and user configuration, managed by nix and home-manager

fix error applying enchant override
Alan Pearce alan@alanpearce.eu
Sun, 19 May 2024 13:30:29 +0200
commit

0abb318c351a8bdb6cac8998d737bd81340cb0c0

parent

ef4c25fdc267f6ce6ed2d29f1eddf4ee7ab7c773

2 files changed, 4 insertions(+), 4 deletions(-)

jump to
M overlays/extra-packages.nixoverlays/extra-packages.nix
@@ -13,8 +13,4 @@ ln -s ${tabnine}/bin/ $target/binaries/${tabnine.version}/${tabnine.passthru.platform}         '';
       };
   });
-  enchant = super.personal.enchant-configurable.override {
-    withHspell = false;
-    withAspell = false;
-  };
 }
M overlays/personal.nixoverlays/personal.nix
@@ -6,4 +6,8 @@ }; in
 {
   inherit personal;
+  enchant = personal.enchant-configurable.override {
+    withHspell = false;
+    withAspell = false;
+  };
 }