This commit is contained in:
Tristan 2024-03-05 20:29:08 +00:00
parent 0eb4b39216
commit 594ec240eb
4 changed files with 35 additions and 23 deletions

View file

@ -184,7 +184,7 @@ in {
device {
name = zsa-technology-labs-moonlander-mark-i
kb_variant =
kb_variant =
kb_options = esperanto:qwerty,lv3:ralt_switch
}
'';

View file

@ -1,4 +1,8 @@
{pkgs, config, ...}: {
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
monado
];
@ -7,24 +11,23 @@
};
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
}
{
"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
}
'';
};
}