meta(nix): Derive attribute values of outputs

This makes it possible to programmatically use all the outputs in a
flake without having to manually specify each one individually, useful
for having one main nix-config that can be used with other flakes and
system configurations.
This commit is contained in:
Donovan Glover 2024-03-31 17:47:33 -04:00
parent 71fe986e34
commit da0b9b3ae6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,10 +1,5 @@
{ self, ... }:
{
nixpkgs.overlays = with self.overlays; [
base16-schemes
kitty
srb2
zola
];
nixpkgs.overlays = builtins.attrValues self.overlays;
}