Merge pull request #1592 from snoweuph/fix/docker

languages/docker: add missing mkIf
This commit is contained in:
Snoweuph 2026-05-14 20:29:23 +02:00 committed by GitHub
commit 56ea692895
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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