1
0
Fork 0

nvim: remove custom overlay

This commit is contained in:
Daniel Kempkens 2024-05-20 13:13:12 +02:00
parent d9b5729e0e
commit 7b0ed6acae
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 0 additions and 20 deletions

View file

@ -42,10 +42,6 @@ jobs:
run: | run: |
nix build '.#lexical' nix build '.#lexical'
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') 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 - name: Build q
run: | run: |
nix build '.#q' nix build '.#q'
@ -86,10 +82,6 @@ jobs:
run: | run: |
nix build '.#lexical' nix build '.#lexical'
attic push ${{ secrets.ATTIC_CACHE }} $(nix-store -qR --include-outputs $(nix-store -qd ./result) | grep -v '\.drv$') 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 - name: Build q
run: | run: |
nix build '.#q' nix build '.#q'

View file

@ -4,11 +4,6 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
flake-parts.url = "github:hercules-ci/flake-parts"; flake-parts.url = "github:hercules-ci/flake-parts";
neovim-flake = {
url = "github:neovim/neovim?dir=contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = inputs@{ flake-parts, ... }: outputs = inputs@{ flake-parts, ... }:
@ -43,7 +38,6 @@
fennel-ls = callPackage ./packages/fennel-ls.nix { }; fennel-ls = callPackage ./packages/fennel-ls.nix { };
headscale-ui = callPackage ./packages/headscale-ui.nix { }; headscale-ui = callPackage ./packages/headscale-ui.nix { };
lexical = callPackage ./packages/lexical.nix { }; lexical = callPackage ./packages/lexical.nix { };
neovim-nightly = callPackage ./packages/neovim-nightly.nix { inherit (inputs'.neovim-flake.packages) neovim; };
q = callPackage ./packages/q.nix { }; q = callPackage ./packages/q.nix { };
redlib = callPackage ./packages/redlib.nix { }; redlib = callPackage ./packages/redlib.nix { };
rexit = callPackage ./packages/rexit.nix { }; rexit = callPackage ./packages/rexit.nix { };

View file

@ -1,6 +0,0 @@
{ neovim, pkgs, lib, ... }:
let
latest-libvterm = pkgs.libvterm-neovim;
in
neovim.override { libvterm-neovim = latest-libvterm; }