Update deps
This commit is contained in:
parent
43b53ee704
commit
79382d4b83
3 changed files with 13 additions and 6 deletions
|
@ -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": {
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
7
system/shared/show-update-changelog.nix
Normal file
7
system/shared/show-update-changelog.nix
Normal 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)
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue