30 lines
653 B
Nix
30 lines
653 B
Nix
{
|
|
pkgs,
|
|
# config,
|
|
...
|
|
}: {
|
|
home.file.".config/openxr/1/openxr_monado.json" = {
|
|
source = "${pkgs.monado}/share/openxr/1/openxr_monado.json";
|
|
};
|
|
# home.file.".config/openvr/openvrpaths.vrpath" = {
|
|
# text = ''
|
|
# {
|
|
# "config" :
|
|
# [
|
|
# "${config.home.homeDirectory}/.local/share/Steam/config"
|
|
# ],
|
|
# "external_drivers" : null,
|
|
# "jsonid" : "vrpathreg",
|
|
# "log" :
|
|
# [
|
|
# "${config.home.homeDirectory}/.local/share/Steam/logs"
|
|
# ],
|
|
# "runtime" :
|
|
# [
|
|
# "${pkgs.opencomposite}/lib/opencomposite"
|
|
# ],
|
|
# "version" : 1
|
|
# }
|
|
# '';
|
|
# };
|
|
}
|