14 lines
168 B
Nix
14 lines
168 B
Nix
{ config
|
|
, pkgs
|
|
, home-manager
|
|
, ...
|
|
}:
|
|
|
|
{
|
|
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscode.fhs;
|
|
};
|
|
}
|