1
1
mirror of https://github.com/divnix/digga.git synced 2024-08-15 18:10:24 +03:00
digga/deprecated.nix
Chris Montgomery 1aa990d2f9
chore: clean up unnecessary args to deprecated.nix
`nixosModules` and `internal-modules` could cause unwanted builds on darwin.
2022-04-24 12:27:25 -04:00

17 lines
356 B
Nix

{ lib, importers }:
lib.warn ''
You are accessing a deprecated item of the digga lib.
Please update timely, it will be remove soon.
''
rec {
importModules =
lib.warn ''
Deprecated Function: lib.importModules.
Use lib.importExportableModules instead to set `exportedModules` option
''
importers.importExportableModules;
}