blob: 14263b32d92aded0e483a1a4b219c98bb3c336df (
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
|
;;; PantherX disk image configuration file
;;;
;;; Author: Reza Alizadeh Majd <r.majd@PantherX.org>
;;; Version: 1.0.0
;;; Time-stamp: <2022-02-09 21:33:50 reza>
;; Generate a bootable image (e.g. for USB sticks, etc.) with:
;; $ guix system disk-image path/to/px-install.scm
;; Using Guix time-machine
;; $ guix time-machine --channels=/path/to/channels.scm -- system disk-image /path/to/px-install.scm
(define-module (px system install)
#:use-module (gnu system)
#:use-module (gnu system install)
#:use-module (nongnu packages linux)
#:use-module (px packages setup)
#:export (installation-os-nonfree))
(define px-installation-os
(operating-system
(inherit installation-os)
(kernel linux)
(firmware (list linux-firmware))
(packages (cons* px-install
(operating-system-packages installation-os)))))
px-installation-os
|