🐛 (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, ... }: {
|
{ pkgs, ... }: {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscode;
|
package = pkgs.vscode.overrideAttrs (oldAttrs: {
|
||||||
|
runtimeDependencies = oldAttrs.runtimeDependencies ++ [ pkgs.libsecret ];
|
||||||
|
});
|
||||||
|
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
github.copilot
|
github.copilot
|
||||||
github.copilot-chat
|
github.copilot-chat
|
||||||
|
|
Loading…
Reference in a new issue