more tweaks to overlays

This commit is contained in:
Noah Masur
2025-02-15 13:59:17 -05:00
parent 798bac75e8
commit 2425c76a84
4 changed files with 21 additions and 26 deletions

12
overlays/unstable.nix Normal file
View File

@ -0,0 +1,12 @@
# Include unstable packages
# Adapted from https://github.com/PsychoLlama/dotfiles/blob/dd41f8c60fdc85868dbd7d88cf933348b497dcf0/lib/overlays/latest-packages.nix
inputs: _final: prev: {
# Provides `pkgs.unstable`.
unstable = import inputs.nixpkgs {
inherit (prev) system config;
overlays = [
# inputs.self.overlays.vim-plugins
];
};
}