chore: update flake.lock
This commit is contained in:
parent
450c7cce19
commit
8f779d37c5
3 changed files with 4 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, neovim-flake, ... }: let
|
{ pkgs, lib, ... }: let
|
||||||
# installs a vim plugin from git with a given tag / branch
|
# installs a vim plugin from git with a given tag / branch
|
||||||
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
||||||
pname = "${lib.strings.sanitizeDerivationName repo}";
|
pname = "${lib.strings.sanitizeDerivationName repo}";
|
||||||
|
@ -30,17 +30,7 @@ in {
|
||||||
|
|
||||||
neovim = {
|
neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Temp fix https://github.com/nix-community/neovim-nightly-overlay/issues/332
|
package = pkgs.neovim-nightly;
|
||||||
package = neovim-flake.packages.x86_64-linux.default.override {
|
|
||||||
libvterm-neovim = pkgs.libvterm-neovim.overrideAttrs (prev: final: {
|
|
||||||
doCheck = false;
|
|
||||||
version = "0.3.3";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://launchpad.net/libvterm/trunk/v0.3.3/+download/libvterm-0.3.3.tar.gz";
|
|
||||||
hash = "sha256-CRVvQ90hKL00fL7r5Q2aVx0yxk4M8Y0hEZeUav9yJuA=";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
withNodeJs = true;
|
withNodeJs = true;
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
withRuby = false;
|
withRuby = false;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }: {
|
{ neovim-flake, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./dracula-theme.nix
|
./dracula-theme.nix
|
||||||
./regreet.nix
|
./regreet.nix
|
||||||
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(import ./blueberry.nix)
|
(import ./blueberry.nix)
|
||||||
|
neovim-flake.overlay
|
||||||
|
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
spotifywm = final.callPackage ./pkgs/spotifywm.nix {};
|
spotifywm = final.callPackage ./pkgs/spotifywm.nix {};
|
||||||
|
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
Loading…
Reference in a new issue