aboutsummaryrefslogtreecommitdiff
path: root/tests/publish.scm
diff options
context:
space:
mode:
authorAndre A. Gomes <andremegafone@gmail.com>2023-10-23 23:33:18 +0300
committerGuillaume Le Vaillant <glv@posteo.net>2023-10-24 14:38:45 +0200
commitd22d2a05c389207f8cdcf824be7738b1499a987c (patch)
treecede68f83305db08f320c0c7a8bb0fb45eb8e44b /tests/publish.scm
parent8ea21f7c916cdaee660fc8b3047032ea6c0e3765 (diff)
downloadguix-d22d2a05c389207f8cdcf824be7738b1499a987c.tar.gz
guix-d22d2a05c389207f8cdcf824be7738b1499a987c.zip
gnu: nyxt: Update to 3.9.1.
* gnu/packages/web-browsers.scm (nyxt): Update to 3.9.1. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Change-Id: I8c8fadb197477566f1faea199cbe9ed8d25d9847
Diffstat (limited to 'tests/publish.scm')
0 files changed, 0 insertions, 0 deletions
FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu system images pine64) #:use-module (gnu bootloader) #:use-module (gnu bootloader u-boot) #:use-module (gnu image) #:use-module (gnu packages linux) #:use-module (gnu packages certs) #:use-module (guix platforms arm) #:use-module (gnu services) #:use-module (gnu services base) #:use-module (gnu services networking) #:use-module (gnu system) #:use-module (gnu system file-systems) #:use-module (gnu system image) #:use-module (srfi srfi-26) #:export (pine64-barebones-os pine64-image-type pine64-barebones-raw-image)) (define pine64-barebones-os (operating-system (host-name "vignemale") (timezone "Europe/Paris") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader u-boot-pine64-lts-bootloader) (targets '("/dev/vda")))) (initrd-modules '()) (kernel linux-libre-arm64-generic) (file-systems (cons (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext4")) %base-file-systems)) (services (cons* (service agetty-service-type (agetty-configuration (extra-options '("-L")) ; no carrier detect (baud-rate "115200") (term "vt100") (tty "ttyS0"))) (service dhcp-client-service-type) (service ntp-service-type) %base-services)) (packages (cons nss-certs %base-packages)))) (define pine64-image-type (image-type (name 'pine64-raw) (constructor (lambda (os) (image (inherit (raw-with-offset-disk-image)) (operating-system os) (platform aarch64-linux)))))) (define pine64-barebones-raw-image (image (inherit (os+platform->image pine64-barebones-os aarch64-linux #:type pine64-image-type)) (name 'pine64-barebones-raw-image))) ;; Return the default image. pine64-barebones-raw-image