summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-24 18:14:02 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-24 18:14:18 +0200
commit68ebf58474851f6c327997f2236c2689782d71d1 (patch)
treedecf8ddbd973cc4badb357f65eafb729127f3848 /systems
parentd9ef2ccec737b077862f6a9280992e4d55742d70 (diff)
feat!: install linux kernel from nonguix
Diffstat (limited to 'systems')
-rw-r--r--systems/mcdowell.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm
index 55fb530..31c1a90 100644
--- a/systems/mcdowell.scm
+++ b/systems/mcdowell.scm
@@ -1,5 +1,6 @@
(define-module (systems mcdowell)
#:use-module (machines portable-bios) ; bootloader-configuration*
+ ; kernel*
; file-systems*
#:use-module (suweren system) ; %suweren-operating-system
#:use-module (users marekpasnikowski) ; marekpasnikowski-account
@@ -15,7 +16,8 @@
;; record operating-system
(define operating-system*
- (%suweren-operating-system bootloader-configuration*
+ (%suweren-operating-system kernel*
+ bootloader-configuration*
host-name*
(file-systems* host-name*)
users*))