10 lines
197 B
Nix
10 lines
197 B
Nix
{ options, ... }:
|
|
|
|
{
|
|
nix.nixPath =
|
|
# Prepend default nixPath values.
|
|
options.nix.nixPath.default ++
|
|
# Append our nixpkgs-overlays.
|
|
[ "nixpkgs-overlays=${../overlays-compat}" ];
|
|
}
|