20 lines
300 B
Nix
20 lines
300 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;
|
|
};
|
|
}
|