diff options
Diffstat (limited to 'systems/ayase/system-configuration.scm')
-rw-r--r-- | systems/ayase/system-configuration.scm | 10 |
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) |