mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
This is particularly useful for disabling modules defined in a flake.
Example:
disabledModules = [ "${flake}/modules/mymodule.nix" ];
Previously, absolute string paths were internally prepended with `modulesPath`,
which caused the module filtering to fail.
6 lines
75 B
Nix
6 lines
75 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
disabledModules = [ (toString ./define-enable.nix) ];
|
|
}
|