13 lines
219 B
Nix
13 lines
219 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
programs.vscode = {
|
|
enable = true;
|
|
|
|
# Use the proprietary VSCode build from Microsft
|
|
# This way we get the "Settings Sync" feature
|
|
package = pkgs.vscode;
|
|
extensions = [];
|
|
};
|
|
}
|