1
0
forked from extern/nix-config
donovanglover-nix-config/containers/wine.nix

51 lines
991 B
Nix
Raw Normal View History

containers.wine = {
2023-06-22 18:51:35 +02:00
{ stylix, home-manager, ... }: {
privateNetwork = true;
ephemeral = true;
bindMounts = {
"/mnt" = {
hostPath = "/home/user/containers/wine";
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";
}
];
2023-06-13 15:06:39 +02:00
config = { pkgs, ... }: {
imports = [
2023-06-22 18:51:35 +02:00
stylix.nixosModules.stylix
home-manager.nixosModules.home-manager
../setup.nix
../modules/pipewire.nix
];
2023-06-11 15:51:26 +02:00
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
2023-06-11 15:51:26 +02:00
winetricks
];
};
};
}