Files
dotfiles/nixos/ryu/services/wivrn.nix
uttarayan21 edf2e5834a
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(wivrn): update to uttarayan21/wivrn and use nightly package
2025-12-12 18:57:32 +05:30

19 lines
278 B
Nix

{
pkgs,
masterPkgs,
inputs,
...
}: {
services.wivrn = {
enable = true;
openFirewall = true;
defaultRuntime = true;
autoStart = true;
steam = {
importOXRRuntimes = true;
};
highPriority = true;
package = pkgs.wivrn-nightly;
};
}