mirror of
https://github.com/nmasur/dotfiles
synced 2025-12-29 00:22:42 +00:00
14 lines
400 B
Nix
14 lines
400 B
Nix
# Include stable packages
|
|
# Adapted from https://github.com/PsychoLlama/dotfiles/blob/dd41f8c60fdc85868dbd7d88cf933348b497dcf0/lib/overlays/latest-packages.nix
|
|
|
|
inputs: _final: prev: {
|
|
# Provides `pkgs.stable`.
|
|
stable = import inputs.nixpkgs-stable {
|
|
system = prev.stdenv.hostPlatform.system;
|
|
inherit (prev) config;
|
|
overlays = [
|
|
# inputs.self.overlays.vim-plugins
|
|
];
|
|
};
|
|
}
|