diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-09-29 07:16:56 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-09-29 08:52:36 +0200 |
commit | 3375b6a56d1501c724a316613a85d832b3425d91 (patch) | |
tree | adf6b0de607d7b265325cb22a9861648fb011ff5 /systems | |
parent | 3d728f601610baa5ebc67b55b42ab6eea2011602 (diff) |
refactor(akashi): adjust operating-system fields
Diffstat (limited to 'systems')
-rw-r--r-- | systems/akashi.scm | 20 |
1 files 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*)) |