mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-10 10:38:35 +02:00
15 lines
244 B
Nix
15 lines
244 B
Nix
{
|
|
bindMounts = {
|
|
waylandDisplay = rec {
|
|
hostPath = "/run/user/1000";
|
|
mountPoint = hostPath;
|
|
};
|
|
|
|
x11Display = rec {
|
|
hostPath = "/tmp/.X11-unix";
|
|
mountPoint = hostPath;
|
|
isReadOnly = true;
|
|
};
|
|
};
|
|
}
|