traverseda-nixos-config/nixos/vr-desktop.nix

17 lines
293 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = [
# (import (pkgs.fetchFromGitHub "https://github.com/SimulaVR/Simula.git"))
];
services.monado.enable = true;
programs.alvr = {
enable = true;
openFirewall = true;
};
environment.systemPackages = with pkgs; [
];
}