blob: 11883255f666901898e74f24d8a43da9e5d9c621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
;;; Package Repository for GNU Guix
;;; Copyright © 2021-2023 Reza Alizadeh Majd <r.majd@pantherx.org>
;;; Copyright © 2021-2025 Franz Geffke <m@f-a.nz>
(define-module (px hardware raspberrypi)
#:use-module (gnu packages admin)
#:use-module (gnu packages linux)
#:use-module (gnu system)
#:use-module (nongnu packages linux)
#:use-module (px system os)
#:use-module (px packages linux)
#:use-module (px services bluetooth)
#:export (%raspberry-pi-4-template
%seeed-reterminal-template))
(define %raspberry-pi-4-template
(os-template
(title "RaspberryPi 4 hardware")
(packages (list cloud-utils
evtest))
(services (list (os-template-service
(type 'add)
(kind btuart-service-type))))
(firmwares (list raspberrypi-firmware
brcm80211-firmware
bluez-firmware))))
(define %seeed-reterminal-template
(os-template
(title "SEEED reTerminal hardware")
(packages (list seeed-reterminal-dtoverlays))))
|