Bottles: Difference between revisions
Appearance
add installation configuration snippets |
fix typo |
||
| Line 16: | Line 16: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
home.packages = with pkgs; [ | home.packages = with pkgs; [ | ||
bottles | |||
]; | ]; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
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
];