1
0
forked from extern/nix-config

containers(dev): Enable gui usage

This commit is contained in:
Donovan Glover 2023-06-24 12:06:13 -04:00
parent cba187fcc8
commit 9dc1d0043d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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