mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
30 lines
473 B
Nix
30 lines
473 B
Nix
{ ... }:
|
|
|
|
{
|
|
setups.nixvim.configs = {
|
|
fiesta = {
|
|
nixpkgsBranches = [
|
|
"nixos-unstable"
|
|
"nixpkgs-unstable"
|
|
];
|
|
neovimPackages = p: with p; [
|
|
neovim-nightly
|
|
];
|
|
};
|
|
|
|
trovebelt = {
|
|
nixpkgsBranches = [
|
|
"nixos-unstable"
|
|
"nixpkgs-unstable"
|
|
];
|
|
neovimPackages = p: with p; [
|
|
neovim-nightly
|
|
];
|
|
};
|
|
};
|
|
|
|
flake = {
|
|
nixvimModules.default = ../../modules/nixvim;
|
|
};
|
|
}
|