nyx/modules/flake/overlays.nix

6 lines
269 B
Nix
Raw Permalink Normal View History

2025-01-26 00:36:34 +02:00
# this file creates an overlay based on the packgaes that out flake provides
{self, ...}: {
# get a list of packages for the host system, and if none exist use an empty set
flake.overlays.default = _: prev: self.packages.${prev.stdenv.hostPlatform.system} or {};
}