Files
dots/home/desktops/wayland.nix
2025-12-01 18:24:34 +01:00

23 lines
413 B
Nix

{pkgs, ...}: {
imports = [
./global.nix
];
home = {
packages = with pkgs; [
wl-clipboard
];
sessionVariables = {
GDK_BACKEND = "wayland";
QT_QPA_PLATFORM = "wayland";
CLUTTER_BACKEND = "wayland";
SDL_VIDEODRIVER = "wayland";
XDG_SESSION_TYPE = "wayland";
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
};
};
services.clipman.enable = true;
}