9 lines
177 B
Nix
9 lines
177 B
Nix
|
{ lib, systemConfig, ... }:
|
||
|
|
||
|
{
|
||
|
environment.sessionVariables = lib.mkIf systemConfig.wayland.enable {
|
||
|
# Tells Electron apps to use Wayland
|
||
|
NIXOS_OZONE_WL = "1";
|
||
|
};
|
||
|
}
|