diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2025-08-10 13:23:23 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-08-10 13:25:13 -0400 |
commit | 28ee35c0b77b1e5033aca4b7bf9f10210f426107 (patch) | |
tree | 87a176f019979b04089711be6ca03076776807f3 | |
parent | aff3b005f46081cbd111da19e64f8ae07b5b464f (diff) |
nonguix: multiarch-container: Expose /dev/ntsync.
Also, update my copyright lines from previous work.
* nonguix/multiarch-container.scm (make-container-wrapper): Expose /dev/ntsync.
-rw-r--r-- | nonguix/multiarch-container.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nonguix/multiarch-container.scm b/nonguix/multiarch-container.scm index f28a287..dfebe9f 100644 --- a/nonguix/multiarch-container.scm +++ b/nonguix/multiarch-container.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2021 pineapples ;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me> ;;; Copyright © 2021 Kozo <kozodev@runbox.com> -;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com> +;;; Copyright © 2021-2025 John Kehayias <john.kehayias@protonmail.com> ;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2023 Attila Lendvai <attila@lendvai.name> ;;; Copyright © 2023 Elijah Malaby @@ -324,6 +324,7 @@ in a sandboxed FHS environment." "^LIBGL_DEBUG$")) (expose `("/dev/bus/usb" ; Needed for libusb. "/dev/dri" + ,@(exists-> "/dev/ntsync") ; Needed for NTSYNC. "/dev/input" ; Needed for controller input. "/dev/uinput" ; Needed for Steam Input. ,@(exists-> "/dev/nvidia0") ; needed for nvidia proprietary driver |