- Add the schemastore plugin for easy completion of JSON and YAML files (Github Actions, Kubernetes manifests etc.). - Update flake inputs.
13 lines
138 B
Nix
13 lines
138 B
Nix
{
|
|
plugins.schemastore = {
|
|
enable = true;
|
|
|
|
json = {
|
|
enable = true;
|
|
};
|
|
|
|
yaml = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|