From 637bb1337f3b1df21951590594109afd2ce996ab Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sat, 25 May 2024 13:19:08 +0200 Subject: separate data from logic in ayase operating-system --- systems/ayase/system-configuration.scm | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm index 9fce668..014274b 100644 --- a/systems/ayase/system-configuration.scm +++ b/systems/ayase/system-configuration.scm @@ -8,6 +8,15 @@ ;; DATA +(define host-name + "ayase") + +(define locale + "pl_PL.utf8") + +(define timezone + "Europe/Warsaw") + ;; ABSTRACTION 2 (define efi-partition @@ -64,7 +73,7 @@ (operating-system (bootloader bootloader) (keyboard-layout keyboard-layout) - (host-name "ayase") + (host-name host-name) (file-systems (append %base-file-systems ;; %distribution-file-systems ayase-file-systems)) @@ -74,7 +83,7 @@ (packages (append %base-packages ;; %distribution-packages system-packages)) - (timezone "Europe/Warsaw") - (locale "pl_PL.utf8") + (timezone timezone) + (locale locale) (services (append %distribution-services system-services))) -- cgit v1.2.3