Skip to content

Commit

Permalink
πŸ› (neodymium/vscode) override runtime deps to use libsecret
Browse files Browse the repository at this point in the history
temporary, waiting for github.com:NixOS/nixpkgs#248167 to hit unstable
  • Loading branch information
Laurent2916 committed Aug 13, 2023
1 parent 7e00415 commit 22520c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hosts/neodymium/home/vscode/default.nix
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 22520c4

Please sign in to comment.