23 lines
362 B
Nix
23 lines
362 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
home.file.".config/electron-flags.conf" = {
|
||
|
enable = true;
|
||
|
executable = false;
|
||
|
text =''
|
||
|
--enable-features=UseOzonePlatform --ozone-platform=wayland
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
home.sessionVariables = {
|
||
|
NIXOS_OZONE_WL = "1";
|
||
|
};
|
||
|
|
||
|
programs.bash = {
|
||
|
enable = true;
|
||
|
#sessionVariables = {
|
||
|
# NIXOS_OZONE_WL = "1";
|
||
|
#};
|
||
|
};
|
||
|
}
|