mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-07 13:03:03 -04:00
some bugs with new version i dont have time to sort out yet update js corepack pin lazygit insane ux choice with no config setting completions are now built-in pin to old nerdfonts I dont want to do this, but the new version just throw error after error at me pin neovim
28 lines
479 B
Nix
28 lines
479 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./pinned.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
pinned.neovim
|
|
nvimpager
|
|
];
|
|
file = {
|
|
nvim = {
|
|
recursive = true;
|
|
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/nvim";
|
|
target = "./.config/nvim";
|
|
};
|
|
};
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
MANPAGER = "nvim +Man!";
|
|
PAGER = "nvimpager";
|
|
};
|
|
};
|
|
}
|