- Move overlays.nix into packages/overlays.nix with dynamic pattern - Update flake.nix to use packagesModule from import-tree - Delete centralized packages.nix (packages are now self-contained) The packages directory is now fully self-contained with each package exporting its own flake output and overlays auto-including all packages. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
473 B
Nix
12 lines
473 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
flake.overlays.default = final: prev: {
|
|
base16-schemes = inputs.self.packages.${final.system}.base16-schemes;
|
|
claude-desktop = inputs.self.packages.${final.system}.claude-desktop;
|
|
fastfetch = inputs.self.packages.${final.system}.fastfetch;
|
|
hm-cli = inputs.self.packages.${final.system}.hm-cli;
|
|
kwrite = inputs.self.packages.${final.system}.kwrite;
|
|
toggleaudiosink = inputs.self.packages.${final.system}.toggleaudiosink;
|
|
};
|
|
}
|