mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-14 04:48:50 +01:00
13 lines
356 B
Nix
13 lines
356 B
Nix
{ config, pkgs, lib, ... }:
|
|
let nixGLWrap = import ./../utils/nixGLWrap.nix { inherit pkgs lib; };
|
|
in {
|
|
programs = {
|
|
vscode = {
|
|
enable = true;
|
|
package = (nixGLWrap (pkgs.vscode.override {
|
|
commandLineArgs =
|
|
"--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --gtk-version=4";
|
|
}));
|
|
};
|
|
};
|
|
}
|