Archived
0
0
Fork 0

add custom wine build

This commit is contained in:
Daryl Ronningen 2023-03-31 03:32:25 -07:00
parent 2c899fb1ab
commit b051046296
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
2 changed files with 10 additions and 0 deletions

View file

@ -55,6 +55,7 @@
];
gui = [
./users/relms/gui.nix
./users/relms/wine.nix
];
};
nixos = {

9
users/relms/wine.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
home.packages = with pkgs; [
(wineWowPackages.stagingFull.override {
vulkanSupport = true;
waylandSupport = true;
})
winetricks
];
}