nixos-config/configs/flake-parts/nixvim.nix

20 lines
303 B
Nix
Raw Normal View History

2024-01-25 14:51:05 +00:00
{ lib, ... }:
{
setups.nixvim = {
configs.fiesta = {
nixpkgsBranches = [
"nixos-unstable"
2024-01-26 13:21:08 +00:00
"nixpkgs-unstable"
2024-01-25 14:51:05 +00:00
];
neovimPackages = pkgs: with pkgs; [
neovim-nightly
];
2024-01-25 14:51:05 +00:00
};
};
2024-01-26 08:54:16 +00:00
flake = {
nixvimModules.default = ../../modules/nixvim;
};
2024-01-25 14:51:05 +00:00
}