nix/hosts/laptop/modules/environment.nix
2024-12-02 06:52:33 -07:00

12 lines
343 B
Nix

{ ... }:
{
# 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" ];
}