nix-config/overlays/default.nix
Donovan Glover 71fe986e34
meta: Prefer self in default.nix
I originally wrote default.nix files to "import all files in a given
directory" however this turns out to not be necessary when flakifying a
configuration and defining all modules, overlays, and packages as
outputs.

Instead of making these "default.nix" files the source of truth for all
imports, it should be more useful to make the flake.nix the source of
truth and programmatically use attribute values as needed.
2024-03-31 17:28:12 -04:00

11 lines
115 B
Nix

{ self, ... }:
{
nixpkgs.overlays = with self.overlays; [
base16-schemes
kitty
srb2
zola
];
}