mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
containers(dev): Enable gui usage
This commit is contained in:
parent
cba187fcc8
commit
9dc1d0043d
@ -12,8 +12,31 @@
|
|||||||
hostPath = "/home/user/containers/dev";
|
hostPath = "/home/user/containers/dev";
|
||||||
isReadOnly = false;
|
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, ... }: {
|
config = { pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
|
Loading…
Reference in New Issue
Block a user