mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-31 06:33:07 +02:00
20 lines
470 B
Nix
20 lines
470 B
Nix
{
|
|
lib,
|
|
pkgs-master,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs-master.vscode.override {
|
|
commandLineArgs = [
|
|
# https://code.visualstudio.com/docs/configure/settings-sync#_recommended-configure-the-keyring-to-use-with-vs-code
|
|
# For use with any package that implements the Secret Service API
|
|
# (for example gnome-keyring, kwallet5, KeepassXC)
|
|
"--password-store=gnome-libsecret"
|
|
];
|
|
};
|
|
};
|
|
}
|