summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <m@f-a.nz>2025-05-30 13:46:47 +0100
committerFranz Geffke <m@f-a.nz>2025-05-30 13:46:47 +0100
commit192c40b7dd2c6d424d14b6d587c1faf55ba561f8 (patch)
tree6351d1a4619ba8d3f64aa4e310e13f2509a4fb3c
parent9e2b06cf14faf3f22a9d64f4d6ec37ceb7cc64d7 (diff)
px: system/install: Use TLS kernel
-rw-r--r--px/system/install.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/px/system/install.scm b/px/system/install.scm
index e607882..7451d7e 100644
--- a/px/system/install.scm
+++ b/px/system/install.scm
@@ -1,9 +1,11 @@
;; PantherX disk image configuration file
;;
;; Generate a bootable image (e.g. for USB sticks, etc.) with:
-;; $ guix system disk-image path/to/px-install.scm
+;; $ guix system image --image-type=iso9660 px/system/install.scm
;; Using Guix time-machine
;; $ guix time-machine --channels=/path/to/channels.scm -- system disk-image -t iso9660 px/system/install.scm
+;; Flash to USB stick (e.g. /dev/sdb) with:
+;; $ dd if=/path/to/disk-image of=/dev/sdb bs=4M status=progress oflag=sync
(define-module (px system install)
#:use-module (guix channels)
@@ -36,8 +38,7 @@
(operating-system
(inherit installation-os)
(host-name "panther")
- (locale "en_US.utf8")
- (kernel linux)
+ (kernel linux-lts)
(firmware (list linux-firmware))
(issue %issue)