add neovim-qt

This commit is contained in:
Gabriel Ebner 2021-05-24 20:09:46 +02:00
parent 41c4cbdf00
commit a001601ec9
3 changed files with 13 additions and 7 deletions

View File

@ -42,6 +42,8 @@
alacritty
neovim-qt
clinfo
lm_sensors

View File

@ -55,11 +55,11 @@
},
"locked": {
"dir": "contrib",
"lastModified": 1621737163,
"narHash": "sha256-b5b7RD1dKzgXAI5gIJBbVvGzlo0SS7R7f7LW3WiW/jE=",
"lastModified": 1621804538,
"narHash": "sha256-nQh143ZcRKu3sEC8M/Ei6825Kr0Q4nQcjNw4QRKkgi0=",
"owner": "neovim",
"repo": "neovim",
"rev": "3fb3b548a6c2f88e1c0c3298589e153f45e199aa",
"rev": "0a653f7ab98dfc05bf0532b9f81bc19377031900",
"type": "github"
},
"original": {
@ -78,11 +78,11 @@
]
},
"locked": {
"lastModified": 1621757641,
"narHash": "sha256-qNnXdOvYsO8UYTUa8HFNBDX8hLqActYkdPzOAkbB2a4=",
"lastModified": 1621844069,
"narHash": "sha256-6jLY3Zlz6c5AEDZ4XzeymB6wz+ixsMITAuHryx7ftg8=",
"owner": "nix-community",
"repo": "neovim-nightly-overlay",
"rev": "d59e24f099593fecbb006dc61c475f8a74069d46",
"rev": "ec583ae1cb5e2431846fa9a7c247f145591b6a70",
"type": "github"
},
"original": {

View File

@ -1,5 +1,9 @@
{ config, inputs, ... }:
{
config.nixpkgs.overlays = [ inputs.neovim-overlay.overlay ];
nixpkgs.overlays = [ inputs.neovim-overlay.overlay ];
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
inherit (inputs.nixpkgs.legacyPackages.${pkgs.system}) neovim-qt-unwrapped;
};
}