nix/home/codium.nix

13 lines
241 B
Nix
Raw Normal View History

2023-01-13 21:44:34 +01:00
{ config, pkgs, ... }:
{
programs.vscode = {
enable = true;
package = (pkgs.vscodium.override {
# commandLineArgs = [
# "--enable-features=UseOzonePlatform,WebRTCPipeWireCapturer"
# "--ozone-platform=wayland"
# ];
});
};
}