Jump to content

Bottles

From Official NixOS Wiki
Revision as of 09:56, 3 April 2026 by Wyzdwdz (talk | contribs) (fix typo)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Bottles is an open source application that lets you manage your Wine or Proton prefixes, and run Windows software within those prefixes.

Installation

Simply install the bottles package:

environment.systemPackages = with pkgs; [
  bottles
];

Home Manager

Add the package to your home.packages:

home.packages = with pkgs; [      
  bottles
];