Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 433 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 433 Bytes

ALVR

GitHub

Example usage

# configuration.nix
{
  programs.alvr = {
    enable = true;
    package = pkgs.alvr;
    openFirewall = true;
  };
}

Full overview

# configuration.nix
{
  programs.alvr = {
    enable = { type = bool; default = false; };
    package = { type = package; default = pkgs.alvr; };
    openFirewall = { type = bool; default = false; };
  };
}