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