nixos-config/desktop/wayland.nix

11 lines
188 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ wl-clipboard ];
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
QT_QPA_PLATFORM = "wayland";
};
}