From 9dc1d0043d67a1f8b1758611215ac8dd0af47571 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 24 Jun 2023 12:06:13 -0400 Subject: [PATCH] containers(dev): Enable gui usage --- containers/dev.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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