Fix the broken conditional on the editor module

This commit is contained in:
Sameer Rahmani 2024-04-15 20:34:26 +01:00
parent 7368622086
commit 20a162e4a1
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
1 changed files with 4 additions and 3 deletions

View File

@ -48,9 +48,10 @@ let
diff-hl
svg-tag-mode
all-the-icons
base16-theme
] ++ lib.optional (config.fg42.emojify) [ emojify ]);
] ++ lib.optionals (config.fg42.emojify) [
emojify
]);
drv = makeFG42Drv {
pname = "editor";
@ -66,7 +67,7 @@ in
options = (with lib; {
fg42.emojify = mkOption {
type = types.bool;
default = true;
default = false;
description = "Whether or not to use the `emojify' package.";
};
});