Compare commits

..

5 commits

Author SHA1 Message Date
a155fbef90 Add (newer) rustdesk client, restore logseq, change to signal bin (prev becoming src-based) 2025-04-19 19:51:49 -04:00
96e38849f0 Alternative attempt at VR
Managed a build of WMR w/Envision...but still no go
2025-04-19 19:51:13 -04:00
51e9459242 Update lock 2025-04-19 19:50:36 -04:00
30a20a6d04 Replace yubikey with yubioath-flutter
Per deprecation warning/suggestion
2025-04-03 15:18:21 -04:00
67c61e79e4 Update flake.lock 2025-04-01 22:38:35 -04:00
3 changed files with 35 additions and 34 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1742670145, "lastModified": 1744987093,
"narHash": "sha256-xQ2F9f+ICAGBp/nNv3ddD2U4ZvzuLOci0u/5lyMXPvk=", "narHash": "sha256-IVioWVz5qVtHiqosesW7CJW//m/yADr7cVdgF1P4N8s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "63e77d09a133ac641a0c204e7cfb0c97e133706d", "rev": "5e6a8203cee7cc33b2e0d9a0adb7268f46447292",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1742422364, "lastModified": 1744932701,
"narHash": "sha256-mNqIplmEohk5jRkqYqG19GA8MbQ/D4gQSK0Mu4LvfRQ=", "narHash": "sha256-fusHbZCyv126cyArUwwKrLdCkgVAIaa/fQJYFlCEqiU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a84ebe20c6bc2ecbcfb000a50776219f48d134cc", "rev": "b024ced1aac25639f8ca8fdfc2f8c4fbd66c48ef",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -48,16 +48,16 @@
boot.kernelModules = [ "kvm-amd" "nct6775" ]; boot.kernelModules = [ "kvm-amd" "nct6775" ];
# Direct patching for enabling for async reprojection (for SteamVR) on AMD # Direct patching for enabling for async reprojection (for SteamVR) on AMD
#boot.kernelPatches = [ boot.kernelPatches = [
# { {
# name = "amdgpu-ignore-ctx-privileges"; name = "amdgpu-ignore-ctx-privileges";
# patch = pkgs.fetchpatch { patch = pkgs.fetchpatch {
# name = "cap_sys_nice_begone.patch"; name = "cap_sys_nice_begone.patch";
# url = "https://github.com/Frogging-Family/community-patches/raw/master/linux61-tkg/cap_sys_nice_begone.mypatch"; url = "https://github.com/Frogging-Family/community-patches/raw/master/linux61-tkg/cap_sys_nice_begone.mypatch";
# hash = "sha256-Y3a0+x2xvHsfLax/uwycdJf3xLxvVfkfDVqjkxNaYEo="; hash = "sha256-Y3a0+x2xvHsfLax/uwycdJf3xLxvVfkfDVqjkxNaYEo=";
# }; };
# } }
#]; ];
services.fwupd.enable = true; services.fwupd.enable = true;
services.hardware.openrgb.enable = true; services.hardware.openrgb.enable = true;
# Add flakes # Add flakes
@ -260,7 +260,7 @@
# why did these two disappear??? # why did these two disappear???
usbutils # provide lsusb, etc. usbutils # provide lsusb, etc.
pciutils # provide lspci, etc. pciutils # provide lspci, etc.
#rustdesk # the rustdesk remote desktop client rustdesk-flutter # the rustdesk remote desktop client (flutter = new/current version)
vorta # borg backup UI vorta # borg backup UI
ncdu # nncurses tool for examining disk usage ncdu # nncurses tool for examining disk usage
psmisc # process tools like killall psmisc # process tools like killall
@ -273,10 +273,10 @@
lfs.enable = true; lfs.enable = true;
}; };
# Orchestrator for FOSS VR stack # Orchestrator for FOSS VR stack
#programs.envision = { programs.envision = {
# enable = true; enable = true;
# openFirewall = true; # This is set true by default openFirewall = true; # This is set true by default
#}; };
#nixpkgs.config.permittedInsecurePackages = [ #nixpkgs.config.permittedInsecurePackages = [
# "electron-27.3.11" # "electron-27.3.11"
#]; #];
@ -425,16 +425,16 @@
}; };
# VR # VR
#Commmand: `renice -20 -p $(pgrep monado)` may help w/issues #Commmand: `renice -20 -p $(pgrep monado)` may help w/issues
services.monado = { #services.monado = {
enable = true; # enable = true;
defaultRuntime = true; # Register as default OpenXR runtime # defaultRuntime = true; # Register as default OpenXR runtime
}; #};
systemd.user.services.monado.environment = { #systemd.user.services.monado.environment = {
WMR_HANDTRACKING = "0"; # Enable for hand tracking # WMR_HANDTRACKING = "0"; # Enable for hand tracking
XRT_PRINT_OPTIONS = "1"; # Enable printing env vars set/available # XRT_PRINT_OPTIONS = "1"; # Enable printing env vars set/available
VIT_SYSTEM_LIBRARY_PATH = "${pkgs.basalt-monado}/lib/libbasalt.so"; # VIT_SYSTEM_LIBRARY_PATH = "${pkgs.basalt-monado}/lib/libbasalt.so";
#U_PACING_COMP_MIN_TIME_MS = "5"; # This is a tweak for something...I forgot # #U_PACING_COMP_MIN_TIME_MS = "5"; # This is a tweak for something...I forgot
}; #};
# allow clock adjustments/priority change, etc (gamemoderun ./game) # allow clock adjustments/priority change, etc (gamemoderun ./game)
# https://wiki.nixos.org/wiki/GameMode # https://wiki.nixos.org/wiki/GameMode
programs.gamemode.enable = true; # for performance mode programs.gamemode.enable = true; # for performance mode

View file

@ -32,11 +32,12 @@ in
keepassxc # passwords! keepassxc # passwords!
macchina # like *fetch - display basics macchina # like *fetch - display basics
z-lua # jump around directories (be careful with same-named ones!) z-lua # jump around directories (be careful with same-named ones!)
# logseq-patch # REQUIRES TEMPORARY INSECURE ELECTRON logseq # logs in sequence note keeping
signal-desktop # messaging signal-desktop-bin # messaging
ddev # local docker dev awesome ddev # local docker dev awesome
vscodium # vs code editor, but free vscodium # vs code editor, but free
yubikey-manager-qt # yubi key mgmgt - more needed #yubikey-manager-qt # yubi key mgmgt - more needed
yubioath-flutter # replacement manager for deprecated manager-qt
#pavucontrol # pulse audio vol control #pavucontrol # pulse audio vol control
# go to 2.17 when no more servers w/python issues (elizabeth) # go to 2.17 when no more servers w/python issues (elizabeth)
ansible_2_16 # deployment/automation ansible_2_16 # deployment/automation