flake/home/applications/common/wayland.nix
2024-01-17 19:53:00 +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
];
}