nix-config/containers/common-container/wayland.nix
2023-06-12 18:09:57 -04:00

15 lines
244 B
Nix

{
bindMounts = {
waylandDisplay = rec {
hostPath = "/run/user/1000";
mountPoint = hostPath;
};
x11Display = rec {
hostPath = "/tmp/.X11-unix";
mountPoint = hostPath;
isReadOnly = true;
};
};
}