mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-21 16:08:07 +01:00
cd565db6d7
* news.txt: Add entry.
98 lines
4.2 KiB
Scheme
98 lines
4.2 KiB
Scheme
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
|
|
;;; Copyright © 2022 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
|
;;; Copyright © 2023 Wolf <wolf@wolfsden.cz>
|
|
;;
|
|
;; Copying and distribution of this file, with or without modification, are
|
|
;; permitted in any medium without royalty provided the copyright notice and
|
|
;; this notice are preserved.
|
|
|
|
(channel-news
|
|
(version 0)
|
|
|
|
(entry (commit "be61a1829a19724299e46d6e3c1038229039c3ee")
|
|
(title
|
|
(en "Nvidia driver package/service updates and changes"))
|
|
(body
|
|
(en "In addition to the Nvidia driver package being updated to 550.67,
|
|
the service, procedures, and configuration has changed. Please see the new
|
|
directions in the Nonguix README.org for how to use the Nvidia driver in your
|
|
system configuration, and of course report any issues with these changes or
|
|
improvements for the documentation.")))
|
|
|
|
(entry (commit "8078757b887a7691644b119913c3f7b41661775d")
|
|
(title
|
|
(en "New @code{GUIX_SANDBOX_EXTRA_SHARES} variable for nonguix containers (Steam)"))
|
|
(body
|
|
(en "The nonguix container has a new environment variable
|
|
@code{GUIX_SANDBOX_EXTRA_SHARES} which is a @code{:} delimited list of
|
|
directories to share with the container. These directories will be available
|
|
at the same path as the host. For instance, you can set this to another drive
|
|
you want to have a Steam library in by either setting this variable in your
|
|
environment or launching Steam with:
|
|
|
|
@example
|
|
GUIX_SANDBOX_EXTRA_SHARES=/some/other/drive steam
|
|
@end example
|
|
|
|
This should allow you to select @code{/some/other/drive} in Steam for a game
|
|
library. This is an experimental feature and just provides a basic way to add
|
|
shares to the container, so please test and report any difficulties or
|
|
suggestions to improve.")))
|
|
|
|
(entry (commit "1591c3d1d10b2884da29ab7d1252304f2ce1514b")
|
|
(title
|
|
(en "(nongnu packages steam-client) module renamed"))
|
|
(body
|
|
(en "The (nongnu packages steam-client) module has been renamed to (nongnu packages
|
|
game-client). This is to better reflect the contents with the addition of the
|
|
Heroic client in a following commit.")))
|
|
|
|
(entry (commit "9456c59cfa580399ab450ca0057321e2d81f3319")
|
|
(title
|
|
(en "Linux LTS kernel updated to 6.1")
|
|
(de "Linux LTS Kernel wird auf 6.1 aktualisiert"))
|
|
(body
|
|
(en "The default version of the @code{linux-lts} kernel has been
|
|
updated to the 6.1 longterm release series.")
|
|
(de "Der standardmäßig verwendete @code{linux-lts}-Kernel basiert
|
|
jetzt auf der 6.1-Versionsreihe (Langzeitunterstützung).")))
|
|
|
|
(entry (commit "7d4c49eace0d3f074aa34ebbbf880236b6b0fab1")
|
|
(title
|
|
(en "Nvidia driver configuration refactored")
|
|
(de "Nvidia Treiberkonfiguration überarbeitet"))
|
|
(body
|
|
(en "The configuration of the Nvidia driver was completly over-worked.
|
|
In the system definition @code{nvidia-driver} needs to be replaced by
|
|
@code{nvidia-module} in the @code{kernel-loadable-module} list. Further add
|
|
the service @code{nvidia-service-type}.")
|
|
(de "Die Konfiguration der Nvidia Treiber wurde komplett überarbeitet.
|
|
Dazu muss in der Systemkonfiguration @code{nvidia-driver} mit @code{nvidia-module}
|
|
in der @code{kernel-loadable-module} Liste ersetzt werden. Sowie der Dienst
|
|
@code{nvidia-service-type} hinzugefügt werden.")))
|
|
|
|
(entry (commit "1ac29b33f3ca19134fcbedd6dc22deb45c15229f")
|
|
(title (en "Nonguix authenticated updates"))
|
|
(body
|
|
(en "Nonguix can now take advantage of the new support for
|
|
authenticated updates in @command{guix pull}, which protects you from attempts
|
|
to tamper with the Nonguix repository and ship malicious code instead.
|
|
To ensure you only receive genuine updates from Nonguix, you should update your
|
|
@file{~/.config/guix/channels.scm} to include the channel introduction:
|
|
|
|
@lisp
|
|
(channel
|
|
(name 'nonguix)
|
|
(url \"https://gitlab.com/nonguix/nonguix\")
|
|
(introduction
|
|
(make-channel-introduction
|
|
\"897c1a470da759236cc11798f4e0a5f7d4d59fbc\"
|
|
(openpgp-fingerprint
|
|
\"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5\"))))
|
|
@end lisp "))))
|
|
|
|
;; Local Variables:
|
|
;; mode: scheme
|
|
;; End:
|
|
|
|
;; vim: filetype=scheme
|