10 lines
162 B
Nix
10 lines
162 B
Nix
{pkgs, ...}: {
|
|
services.wivrn = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
defaultRuntime = true;
|
|
autoStart = true;
|
|
package = pkgs.wivrn;
|
|
};
|
|
}
|