mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 19:25:09 +00:00
5 lines
269 B
Nix
5 lines
269 B
Nix
# 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 {};
|
|
}
|