Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ You can download the latest Linux builds under the [Releases](https://github.com
- **Unpacked:** The raw unpacked files, simply run the executable (`linux-unpacked/winboat`)
- **.deb:** The intended format for Debian based distributions
- **.rpm:** The intended format for Fedora based distributions
- flake.nix - Install using Nix
1. Add to your flake `inputs.winboat.url = "github:TibixDev/winboat";`
2. Add `inputs.winboat.packages.${system}.default` to `environment.systemPackages` or `home.packages`
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think enabling the module would be better:

imports = [ inputs.winboat.nixosModules.${system}.default ];
services.winboat.enable = true;

This way docker, libvirtd and iptable_nat will be set up automatically.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should probably also mention that virtualisation.docker.rootless needs to be disabled to avoid problems like in #171.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all of what you said are actually good points and amazin. The flake seems to have changed and now not supporting the module anymore (?)
so I'm waiting a bit for more info from the last comitter.




## Known Issues About Container Runtimes
- Podman is **unsupported** for now
Expand Down