nix-config/containers/wine.nix

72 lines
1.4 KiB
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
programs = {
fish.enable = true;
neovim.enable = true;
starship.enable = true;
};
2023-06-11 15:51:26 +02:00
users = {
defaultUserShell = pkgs.fish;
mutableUsers = false;
allowNoPasswordLogin = true;
2023-06-11 15:51:26 +02:00
users.user = {
isNormalUser = true;
home = "/home/user";
};
2023-06-11 15:51:26 +02:00
};
2023-06-11 15:51:26 +02:00
environment = {
shells = with pkgs; [ fish ];
};
2023-06-11 15:51:26 +02:00
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
2023-06-11 15:51:26 +02:00
winetricks
];
};
};
}