18 lines
244 B
Nix
18 lines
244 B
Nix
{
|
|
pkgs,
|
|
masterPkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
services.wivrn = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
defaultRuntime = true;
|
|
autoStart = true;
|
|
steam = {
|
|
importOXRRuntimes = true;
|
|
};
|
|
highPriority = true;
|
|
};
|
|
}
|