dotfiles/nix/overlays/default.nix
Oliver Davies 2ed0cfbb20 Remove the old nixpkgs-unstable input
This is not needed as I'm now using unstable by default.
2024-11-21 10:49:00 +00:00

21 lines
318 B
Nix

{ inputs, ... }:
{
additions =
final: prev:
import ../pkgs {
inherit prev;
pkgs = final;
};
modifications = final: prev: { };
stable-packages = final: _prev: {
nixpkgs-2405 = import inputs.nixpkgs-2405 {
config.allowUnfree = true;
system = final.system;
};
};
}