From 3375b6a56d1501c724a316613a85d832b3425d91 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sun, 29 Sep 2024 07:16:56 +0200 Subject: refactor(akashi): adjust operating-system fields --- systems/akashi.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/systems/akashi.scm b/systems/akashi.scm index fb06c9e..03bc869 100644 --- a/systems/akashi.scm +++ b/systems/akashi.scm @@ -28,16 +28,16 @@ ((@ (gnu system) operating-system) (inherit %suweren-operating-system) (kernel kernel*) - (bootloader-configuration* keyboard-layout) - keyboard-layout - initrd* - firmware* - host-name* - (file-systems* host-name*) - (swap-devices* host-name*) - (users) - timezone* - services*))) + (bootloader (bootloader-configuration* keyboard-layout)) + (keyboard-layout keyboard-layout) + (initrd initrd*) + (firmware firmware*) + (host-name host-name*) + (file-systems ((@ (machines thinkpad-x200) file-systems*) host-name*)) + (swap-devices (swap-devices* host-name*)) + (users (users)) + (timezone timezone*) + (services services*)))) (define-public operating-system* (operating-system*)) -- cgit v1.2.3