mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
40 lines
886 B
Nix
40 lines
886 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;
|
|
};
|
|
}
|