Jump to content

Bottles: Difference between revisions

From Official NixOS Wiki
Create page for Bottles
 
fix typo
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


== Installation ==
== Installation ==
Bottles can be installed from nixpkgs:
Simply [[Adding programs to PATH|install]] the <code>bottles</code> package:


<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nix">
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
  bottles
];
</syntaxhighlight>
=== Home Manager ===
Add the package to your <code>[https://home-manager-options.extranix.com/?release=master&query=home.packages home.packages]</code>:
<syntaxhighlight lang="nix">
home.packages = with pkgs; [     
   bottles
   bottles
];
];

Latest revision as of 09:56, 3 April 2026

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
];