mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 12:19:00 +00:00
31 lines
804 B
Nix
31 lines
804 B
Nix
{ inputs, lib, ... }:
|
|
|
|
{
|
|
setups.nixvim.configs = {
|
|
fiesta = {
|
|
components = [{
|
|
nixpkgsBranch = "nixos-unstable";
|
|
nixvimBranch = "nixvim-unstable";
|
|
neovimPackage = pkgs: pkgs.neovim;
|
|
overlays = [ inputs.neovim-nightly-overlay.overlays.default ];
|
|
}];
|
|
};
|
|
|
|
trovebelt = {
|
|
components = lib.cartesianProduct {
|
|
nixpkgsBranch = [ "nixos-unstable" ];
|
|
nixvimBranch = [ "nixvim-unstable" ];
|
|
neovimPackage = [ (pkgs: pkgs.neovim) ];
|
|
overlays = [ [ inputs.neovim-nightly-overlay.overlays.default ] [ ] ];
|
|
};
|
|
};
|
|
};
|
|
|
|
setups.nixvim.sharedModules = [
|
|
# The rainbow road to ricing your raw materials.
|
|
inputs.self.nixvimModules.bahaghari
|
|
];
|
|
|
|
flake = { nixvimModules.default = ../../modules/nixvim; };
|
|
}
|