mirror of https://github.com/renovatebot/renovate
16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
import { GitRefsDatasource } from '../../datasource/git-refs';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)flake\\.nix$'],
|
|
commitMessageTopic: 'nixpkgs',
|
|
commitMessageExtra: 'to {{newValue}}',
|
|
enabled: false,
|
|
};
|
|
|
|
export const supportedDatasources = [GitRefsDatasource.id];
|