languages/docker: add missing mkIf

This commit is contained in:
Snoweuph 2026-05-14 20:26:37 +02:00
commit 7753a473b5
No known key found for this signature in database
GPG key ID: BEFC41DA223CEC55

View file

@ -95,7 +95,7 @@ in {
}; };
}; };
config = mkMerge [ config = mkIf cfg.enable (mkMerge [
{ {
vim.autocmds = [ vim.autocmds = [
# Without this the LSP doesn't understand them correctly # Without this the LSP doesn't understand them correctly
@ -162,5 +162,5 @@ in {
); );
}; };
}) })
]; ]);
} }