-
-
Notifications
You must be signed in to change notification settings - Fork 385
Add nix install instructions to README.md #170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| - **.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` |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
|
Hey, I'll gladly merge once you folks figure out what are the best instructions, I see some comments suggesting improvements. I'm personally not on Nix. |
|
I was going to add this but since you already did it, bump! |
|
Winboat is now part of unstable. see NixOS/nixpkgs#451068 instructions at #281 (comment) |
|
Will update this PR tomorrow. |
|
any updates? the nix flake has been removed from WinBoat's repo - I assume the instructions in the readme will reflect this? |
I've noticed the new flake.nix is missing installation instructions in the README so I've added a small section.