update nixos

This commit is contained in:
Gabriel Ebner 2022-08-22 18:54:27 +02:00
parent ceeebd285f
commit 1c25e80ce5
2 changed files with 15 additions and 15 deletions

View File

@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1660396586, "lastModified": 1661088761,
"narHash": "sha256-ePuWn7z/J5p2lO7YokOG1o01M0pDDVL3VrStaPpS5Ig=", "narHash": "sha256-5DGKX81wIPAAiLwUmUYECpA3vop94AHHR7WmGXSsQok=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e105167e98817ba9fe079c6c3c544c6ef188e276", "rev": "a7855f2235a1876f97473a76151fec2afa02b287",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -4,18 +4,18 @@
# nixpkgs.overlays = [ inputs.neovim-overlay.overlay ]; # nixpkgs.overlays = [ inputs.neovim-overlay.overlay ];
nixpkgs.config.packageOverrides = pkgs: with pkgs; { nixpkgs.config.packageOverrides = pkgs: with pkgs; {
neovim-unwrapped = neovim-unwrapped.overrideDerivation (orig: { # neovim-unwrapped = neovim-unwrapped.overrideDerivation (orig: {
patches = orig.patches ++ [ ]; # patches = orig.patches ++ [ ];
}); # });
neovim-qt-unwrapped = neovim-qt-unwrapped.overrideDerivation (_: { # neovim-qt-unwrapped = neovim-qt-unwrapped.overrideDerivation (_: {
version = "0.2.17.9999"; # version = "0.2.17.9999";
src = fetchFromGitHub { # src = fetchFromGitHub {
owner = "equalsraf"; # owner = "equalsraf";
repo = "neovim-qt"; # repo = "neovim-qt";
rev = "67cc4e414a8e64a475e55230818fab0f78415634"; # rev = "67cc4e414a8e64a475e55230818fab0f78415634";
sha256 = "sha256-3jYYY7T7L4rMsxIxJwY32izmlJKrrqbmU4DZ2Aow5uE="; # sha256 = "sha256-3jYYY7T7L4rMsxIxJwY32izmlJKrrqbmU4DZ2Aow5uE=";
}; # };
}); # });
}; };
} }