summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 13:19:08 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-25 13:19:08 +0200
commit637bb1337f3b1df21951590594109afd2ce996ab (patch)
tree3213e37c767392c4e0e06db4884863bbf221f172
parent11a6b1d22825e80b1796a3de9a384b2e1b4cb8fb (diff)
separate data from logic in ayase operating-system
-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)))