🐛 (neodymium/vscode) override runtime deps to use libsecret
temporary, waiting for github.com:NixOS/nixpkgs#248167 to hit unstable
This commit is contained in:
parent
7e004155c0
commit
22520c432d
|
@ -1,7 +1,10 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscode;
|
||||
package = pkgs.vscode.overrideAttrs (oldAttrs: {
|
||||
runtimeDependencies = oldAttrs.runtimeDependencies ++ [ pkgs.libsecret ];
|
||||
});
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
github.copilot
|
||||
github.copilot-chat
|
||||
|
|
Loading…
Reference in a new issue