diff --git a/containers/dev.nix b/containers/dev.nix index eea5cdb3..6137a796 100644 --- a/containers/dev.nix +++ b/containers/dev.nix @@ -12,8 +12,31 @@ hostPath = "/home/user/containers/dev"; isReadOnly = false; }; + + waylandDisplay = rec { + hostPath = "/run/user/1000"; + mountPoint = hostPath; + }; + + x11Display = rec { + hostPath = "/tmp/.X11-unix"; + mountPoint = hostPath; + isReadOnly = true; + }; + + dri = rec { + hostPath = "/dev/dri"; + mountPoint = hostPath; + }; }; + allowedDevices = [ + { + modifier = "rw"; + node = "/dev/dri/renderD128"; + } + ]; + config = { pkgs, ... }: { imports = [ home-manager.nixosModules.home-manager