13 lines
241 B
Nix
13 lines
241 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
programs.vscode = {
|
||
|
enable = true;
|
||
|
package = (pkgs.vscodium.override {
|
||
|
# commandLineArgs = [
|
||
|
# "--enable-features=UseOzonePlatform,WebRTCPipeWireCapturer"
|
||
|
# "--ozone-platform=wayland"
|
||
|
# ];
|
||
|
});
|
||
|
};
|
||
|
}
|