this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wallsocket: enable wivrn

+60 -2
+21 -1
home/modules/xdg.nix
··· 1 1 { 2 + config, 2 3 pkgs, 3 - lib, 4 4 ... 5 5 }: let 6 6 vivalarc = pkgs.fetchFromGitHub { ··· 21 21 }; 22 22 23 23 xdg.dataFile."vivalarc".source = vivalarc; 24 + xdg.configFile."openxr/1/active_runtime.json".source = "${pkgs.monado}/share/openxr/1/openxr_monado.json"; 25 + xdg.configFile."openvr/openvrpaths.vrpath".text = '' 26 + { 27 + "config" : 28 + [ 29 + "${config.xdg.dataHome}/Steam/config" 30 + ], 31 + "external_drivers" : null, 32 + "jsonid" : "vrpathreg", 33 + "log" : 34 + [ 35 + "${config.xdg.dataHome}/Steam/logs" 36 + ], 37 + "runtime" : 38 + [ 39 + "${pkgs.opencomposite}/lib/opencomposite" 40 + ], 41 + "version" : 1 42 + } 43 + ''; 24 44 }
+39 -1
nixos/wallsocket/configuration.nix
··· 83 83 users.users.ovy = { 84 84 isNormalUser = true; 85 85 description = "Ashlynne Mitchell"; 86 - extraGroups = ["networkmanager" "wheel" "libvirtd" "cdrom"]; 86 + extraGroups = ["networkmanager" "wheel" "libvirtd" "cdrom" "adbusers"]; 87 87 shell = pkgs.fish; 88 88 }; 89 + 90 + programs.adb.enable = true; 89 91 90 92 system.tools.nixos-option.enable = false; 91 93 ··· 119 121 p7zip 120 122 kdePackages.kcalc 121 123 kdePackages.partitionmanager 124 + pciutils 125 + opencomposite 122 126 # tailscale-systray 123 127 # wl-clipboard 124 128 # kitty ··· 265 269 environment.etc."1password/custom_allowed_browsers" = { 266 270 text = "vivaldi-bin"; 267 271 mode = "0755"; 272 + }; 273 + 274 + services.espanso.enable = true; 275 + services.espanso.package = pkgs.espanso-wayland; 276 + 277 + services.avahi.enable = true; 278 + services.wivrn = { 279 + enable = true; 280 + defaultRuntime = true; 281 + autoStart = true; 282 + openFirewall = true; 283 + config = { 284 + enable = true; 285 + json = { 286 + scale = 1.0; # foveation 287 + bitrate = 50000000; # 50 Mb/s 288 + # application = [pkgs.wlx-overlay-s]; 289 + encoders = [ 290 + { 291 + encoder = "vaapi"; 292 + codec = "av1"; 293 + width = 1; 294 + height = 1; 295 + offset_x = 0; 296 + offset_y = 0; 297 + } 298 + ]; 299 + }; 300 + }; 301 + }; 302 + programs.corectrl = { 303 + enable = true; 304 + gpuOverclock.enable = true; 305 + gpuOverclock.ppfeaturemask = "0xffffffff"; 268 306 }; 269 307 270 308 services.earlyoom.enable = true;