bottles attribute

This commit is contained in:
2026-07-07 17:25:07 +01:00
parent b615ba2ff1
commit a67e855aca

View File

@@ -0,0 +1,18 @@
{
self,
moduleWithSystem,
...
}: {
flake.nixosModules.bottles = moduleWithSystem ({pkgs, ...}: {
environment.systemPackages = with pkgs; [
(bottles.override {
removeWarningPopup = true;
})
wineWow64Packages.stable
winetricks
wine
wine64
freetype
];
});
}