nix/hosts/laptop/modules/environment.nix

13 lines
343 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ ... }:
{
# Enable wayland support
environment.sessionVariables = {
# Wayland electron has no hardware acceleration support, so disable it for now
# NIXOS_OZONE_WL = "1";
STEAM_FORCE_DESKTOPUI_SCALING = "2";
};
# Enable zsh-autocomplete compatibility
environment.pathsToLink = [ "/share/zsh" ];
}