1
0
Fork 0

Update deps

This commit is contained in:
Daniel Kempkens 2023-05-14 21:24:19 +02:00
parent 43b53ee704
commit 79382d4b83
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 13 additions and 6 deletions

View file

@ -228,11 +228,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1684058710, "lastModified": 1684061181,
"narHash": "sha256-A0Qix+nPSjxO9kn2iFxciui0UolDancvFSWQGxU453s=", "narHash": "sha256-EJpZ+Drpt3aHpowddpsQFBWsqLSJHyP6dnremTVMdWw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "db3d440e2664e8aaf67742b6fd545cf148fe5016", "rev": "e4272987f785a8848205263abb4911b922c21e1b",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -118,12 +118,12 @@ in
}; };
nvim-ts-rainbow2 = buildVimPluginFrom2Nix { nvim-ts-rainbow2 = buildVimPluginFrom2Nix {
pname = "nvim-ts-rainbow2"; pname = "nvim-ts-rainbow2";
version = "2023-04-25"; version = "2023-05-14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "HiPhish"; owner = "HiPhish";
repo = "nvim-ts-rainbow2"; repo = "nvim-ts-rainbow2";
rev = "1ffe68cdd594633dfee0762feebfef81ed6f1fbb"; rev = "a1e460f126db0bc3dc9e0cbad157e5671ffd2046";
sha256 = "01qlrz7s681s0hl2ygg6qq7ysqr1yxz7y512f647mviv7c7aw3qy"; sha256 = "0dxginbs2q8p2wfqi3rl6zs9zi1arbdb2kcqbljxcfs1ia36x3qr";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };

View file

@ -0,0 +1,7 @@
{ pkgs, config, ... }:
{
system.activationScripts.show-update-changelog = ''
${pkgs.nvd}/bin/nvd --nix-bin-dir='${config.nix.package}/bin' diff $(ls -d /nix/var/nix/profiles/system-*-link | tail -n2)
'';
}