jungle/common/overlays.nix

10 lines
197 B
Nix
Raw Normal View History

2023-04-03 12:51:44 +02:00
{ options, ... }:
{
nix.nixPath =
# Prepend default nixPath values.
options.nix.nixPath.default ++
# Append our nixpkgs-overlays.
2023-04-26 17:36:36 +02:00
[ "nixpkgs-overlays=${../overlays-compat}" ];
2023-04-03 12:51:44 +02:00
}