nvim: remove custom overlay
This commit is contained in:
parent
d9b5729e0e
commit
7b0ed6acae
3 changed files with 0 additions and 20 deletions
|
@ -42,10 +42,6 @@ jobs:
|
|||
run: |
|
||||
nix build '.#lexical'
|
||||
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$')
|
||||
- name: Build neovim-nightly
|
||||
run: |
|
||||
nix build '.#neovim-nightly'
|
||||
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$')
|
||||
- name: Build q
|
||||
run: |
|
||||
nix build '.#q'
|
||||
|
@ -86,10 +82,6 @@ jobs:
|
|||
run: |
|
||||
nix build '.#lexical'
|
||||
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$')
|
||||
- name: Build neovim-nightly
|
||||
run: |
|
||||
nix build '.#neovim-nightly'
|
||||
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$')
|
||||
- name: Build q
|
||||
run: |
|
||||
nix build '.#q'
|
||||
|
|
|
@ -4,11 +4,6 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
|
||||
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
|
||||
neovim-flake = {
|
||||
url = "github:neovim/neovim?dir=contrib";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ flake-parts, ... }:
|
||||
|
@ -43,7 +38,6 @@
|
|||
fennel-ls = callPackage ./packages/fennel-ls.nix { };
|
||||
headscale-ui = callPackage ./packages/headscale-ui.nix { };
|
||||
lexical = callPackage ./packages/lexical.nix { };
|
||||
neovim-nightly = callPackage ./packages/neovim-nightly.nix { inherit (inputs'.neovim-flake.packages) neovim; };
|
||||
q = callPackage ./packages/q.nix { };
|
||||
redlib = callPackage ./packages/redlib.nix { };
|
||||
rexit = callPackage ./packages/rexit.nix { };
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{ neovim, pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
latest-libvterm = pkgs.libvterm-neovim;
|
||||
in
|
||||
neovim.override { libvterm-neovim = latest-libvterm; }
|
Loading…
Reference in a new issue