20 lines
493 B
Nix
20 lines
493 B
Nix
{
|
|
description = "nezia's nvf configuration";
|
|
|
|
outputs = {nixpkgs, ...} @ inputs: {
|
|
unwrapped = let
|
|
inherit (nixpkgs.legacyPackages."x86_64-linux") pkgs;
|
|
neovimConfigured = inputs.nvf.lib.neovimConfiguration {
|
|
inherit pkgs;
|
|
modules = [./configuration];
|
|
extraSpecialArgs = {inherit pkgs;};
|
|
};
|
|
in
|
|
neovimConfigured;
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nvf.url = "github:notashelf/nvf";
|
|
};
|
|
}
|