summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--systems/ayase/system-configuration.scm15
1 files 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)))