flake/users/guanranwang/home-manager/applications/common/wayland.nix
2023-12-19 03:13:49 +08:00

9 lines
170 B
Nix

{pkgs, ...}: {
home.sessionVariables = {
NIXOS_OZONE_WL = "1"; # let electron applications use wayland
};
home.packages = with pkgs; [
wl-clipboard
];
}