summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 18:18:43 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 18:18:43 +0200
commit472289b8486ef576cf9d20c41654287ce795fcef (patch)
tree6611678dd137b8b149af27a9c7915ec9e0cf5a49
parentff0c3a2532b00b6aa73ce3e98708aa7c6185f430 (diff)
install non-free kernel infrastructure in ayase
-rw-r--r--systems/ayase/system-configuration.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm
index 4a43d91..8f1357b 100644
--- a/systems/ayase/system-configuration.scm
+++ b/systems/ayase/system-configuration.scm
@@ -4,6 +4,8 @@
#:use-module (gnu services networking)
#:use-module (gnu services ssh)
#:use-module (gnu services xorg)
+ #:use-module (nongnu packages linux)
+ #:use-module (nongnu system linux-initrd)
#:use-module (services distribution))
(define bootloader-targets
@@ -81,6 +83,9 @@
;; %distribution-file-systems
ayase-file-systems))
+(define firmware
+ (list linux-firmware))
+
(define packages
(append %base-packages
;; %distribution-packages
@@ -99,8 +104,11 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(operating-system (bootloader bootloader)
+(operating-system (kernel linux)
+ (bootloader bootloader)
(keyboard-layout keyboard-layout)
+ (initrd microcode-initrd)
+ (firmware firmware)
(host-name "ayase")
(file-systems file-systems)
(swap-devices swap-devices)