8 lines
207 B
Nix
8 lines
207 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
# Enable wayland support for electron apps
|
||
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||
|
|
||
|
# Enable zsh-autocomplete compatibility
|
||
|
environment.pathsToLink = [ "/share/zsh" ];
|
||
|
}
|