diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2026-04-04 22:42:28 -0400 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2026-04-05 11:04:59 -0400 |
| commit | 75996d94ba3eea2a4434a05547bff392aa72c3d9 (patch) | |
| tree | 4ce2db14c9a8a4f99a60a6c493677f4df2986bee | |
| parent | a51b143ac041972df96ee921523b0d8dc2dd78f0 (diff) | |
fix: remove broken v4l2loopback
| -rw-r--r-- | .codex | 0 | ||||
| -rw-r--r-- | system.scm | 22 |
2 files changed, 9 insertions, 13 deletions
@@ -20,7 +20,7 @@ dbus desktop ;; docker - linux ; for kernel-module-loader-service-type + linux messaging networking sddm @@ -32,7 +32,6 @@ (use-package-modules games ;for steam-devices-udev-rules gnome ;for libratbag - linux ;for v4l2loopback-linux-module messaging ;for bitlbee and bitlbee plugins pulseaudio) @@ -44,13 +43,10 @@ (guix inferior) (guix packages)) -(define-values (rz/linux - rz/linux-libre-headers - rz/linux-kernel-modules) - (values linux - (specification->package "linux-libre-headers") - (list (specification->package "v4l2loopback-linux-module")))) - +(define rz/linux linux) +(define rz/linux-kernel-modules '()) +;; NOTE: v4l2loopback-linux-module cannot be built against inferior linux +;; Inferior and regular packages cannot be mixed as build inputs ;; TODO FIX ;; (define dslr-webcam-config ;; (plain-file "dslr-webcam.conf" @@ -70,7 +66,7 @@ (host-name "lambda") (kernel rz/linux) - (kernel-loadable-modules rz/linux-kernel-modules) + ; (kernel-loadable-modules rz/linux-kernel-modules) (initrd microcode-initrd) (firmware (list linux-firmware)) @@ -129,7 +125,7 @@ "xdg-desktop-portal-wlr" "xdg-user-dirs" "xdg-utils")) - (list rz/linux-libre-headers + (list noisetorch) %base-packages)) (setuid-programs @@ -235,8 +231,8 @@ "KERNEL==\"hidraw*\", ATTRS{idVendor}==\"3297\", MODE=\"0664\", GROUP=\"plugdev\"\n" "# Wally Flashing rules for the Moonlander and Planck EZ\n" "SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"df11\", MODE:=\"0666\", SYMLINK+=\"stm32_dfu\"\n"))) - ;; TODO FIX - (service kernel-module-loader-service-type '("v4l2loopback")) + ;; Removed TODO FIX + ; (service kernel-module-loader-service-type '("v4l2loopback")) ;; (simple-service 'v4l2loopback-config etc-service-type ;; (list `("modprobe.d/dslr-webcam.conf" ;; ,dslr-webcam-config))) |
