Merge branch alpine/master of into nixbook/master

This commit is contained in:
Tristan 2024-03-05 20:36:04 +00:00
commit 61749486f3
9 changed files with 54 additions and 34 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

@ -19,7 +19,6 @@
ardour
blender
# musescore
jellyfin-media-player
monero-gui
electrum
xmrig
@ -30,5 +29,6 @@
hugo
libsForQt5.neochat
bookworm
jellyfin-mpv-shim
];
}

View file

@ -1,30 +1,32 @@
{pkgs, config, ...}: {
{
pkgs,
...
}: {
home.packages = with pkgs; [
monado
];
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
}
'';
};
# 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
# }
# '';
# };
}