nix-config/overlays/default.nix
Lander Van den Bulcke 105f613c6b
chore: refactor flake layout
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-17 00:24:12 +02:00

20 lines
471 B
Nix

{ inputs, ... }:
{
# Import custom packages
additions = final: _prev: import ../pkgs final.pkgs;
# Add modifications here:
modifications = final: prev: {
# example = prev.example.overrideAttrs (oldAttrs: rec {
# ...
# });
};
# add nixpkgs unstable (accessible through pkgs.unstable)
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}