e2cc361970
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) ];
|
|
}
|