Skip to content

Commit 0c6d602

Browse files
Add nix install instructions to README.md (#170)
* Add nix install instructions to README.md * removed empty spaces * updated nix instructions for README file after flake rework
1 parent f231290 commit 0c6d602

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,14 @@ You can download the latest Linux builds under the [Releases](https://github.com
7373
- **Unpacked:** The raw unpacked files, simply run the executable (`linux-unpacked/winboat`)
7474
- **.deb:** The intended format for Debian based distributions
7575
- **.rpm:** The intended format for Fedora based distributions
76-
76+
- **Nix (Nixpkgs)**
77+
1. Add the winboat package to your config (ensure using nixpkgs-unstable)
78+
using `environment.systemPackages = [pkgs.winboat];` or `home.packages = [pkgs.winboat];` if using home manager.
79+
2. Add the following lines to your nix configuration
80+
```nix
81+
virtualisation.docker.enable = true;
82+
users.users.{yourUser}.extraGroups = ["docker"];
83+
```
7784
## Known Issues About Container Runtimes
7885
7986
- Docker Desktop is **unsupported** for now

0 commit comments

Comments
 (0)