diff options
Diffstat (limited to 'px/hardware/raspberrypi.scm')
-rw-r--r-- | px/hardware/raspberrypi.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/px/hardware/raspberrypi.scm b/px/hardware/raspberrypi.scm new file mode 100644 index 0000000..2dbde25 --- /dev/null +++ b/px/hardware/raspberrypi.scm @@ -0,0 +1,28 @@ +(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 device) + #: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)))) |