mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
21 lines
338 B
Nix
21 lines
338 B
Nix
{pkgs, ...}: {
|
|
plugins = {
|
|
lsp.servers = {
|
|
dockerls.enable = true;
|
|
docker_compose_language_service.enable = true;
|
|
};
|
|
|
|
lint = {
|
|
lintersByFt = {
|
|
docker = ["hadolint"];
|
|
};
|
|
|
|
linters = {
|
|
hadolint = {
|
|
cmd = "${pkgs.hadolint}/bin/hadolint";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|