flake/home/applications/common/wayland.nix

10 lines
170 B
Nix
Raw Normal View History

2023-12-18 19:06:50 +00:00
{pkgs, ...}: {
home.sessionVariables = {
NIXOS_OZONE_WL = "1"; # let electron applications use wayland
};
home.packages = with pkgs; [
wl-clipboard
];
}