mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
flake: drop zig overlay
This commit is contained in:
parent
0c848869cf
commit
8506a5ecee
5 changed files with 18 additions and 82 deletions
|
@ -9,11 +9,9 @@
|
|||
overlays = [
|
||||
inputs.tidalcycles.overlays.default
|
||||
inputs.self.overlays.default
|
||||
inputs.zig.overlays.default
|
||||
(_: _: {
|
||||
rnix-lsp = inputs'.rnix-lsp.defaultPackage;
|
||||
nil = inputs'.nil.packages.default;
|
||||
zig = inputs'.zig.packages.default;
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
|
@ -5,9 +5,7 @@
|
|||
}: let
|
||||
inherit (import ../configuration.nix inputs) neovimConfiguration mainConfig;
|
||||
|
||||
buildPkg = pkgs: modules:
|
||||
(neovimConfiguration {inherit pkgs modules;})
|
||||
.neovim;
|
||||
buildPkg = pkgs: modules: (neovimConfiguration {inherit pkgs modules;}).neovim;
|
||||
|
||||
nixConfig = mainConfig false;
|
||||
maximalConfig = mainConfig true;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{inputs, ...}: {
|
||||
perSystem = {
|
||||
self',
|
||||
system,
|
||||
config,
|
||||
pkgs,
|
||||
|
@ -18,6 +19,12 @@
|
|||
docs-manpages = docs.manPages;
|
||||
docs-json = docs.options.json;
|
||||
|
||||
docs-html-wrapped = pkgs.writeScriptBin "docs-html-wrapped" ''
|
||||
#!${pkgs.stdenv.shell}
|
||||
# use xdg-open to open the docs in the browser
|
||||
${pkgs.xdg_utils}/bin/xdg-open ${docs.manual.html}
|
||||
'';
|
||||
|
||||
# nvim configs
|
||||
nix = config.legacyPackages.neovim-nix;
|
||||
maximal = config.legacyPackages.neovim-maximal;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue