From 38546261f764bd69e58df7f49319a163870907b0 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sun, 26 May 2024 23:29:59 +0200 Subject: name the ayase system for use with guix system -e --- systems/ayase/system-configuration.scm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm index 0c533a5..c838613 100644 --- a/systems/ayase/system-configuration.scm +++ b/systems/ayase/system-configuration.scm @@ -104,16 +104,17 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(operating-system (kernel linux) - (bootloader bootloader) - (keyboard-layout keyboard-layout) - (initrd microcode-initrd) - (firmware firmware) - (host-name "ayase") - (file-systems file-systems) - (swap-devices swap-devices) - (users users) - (packages packages) - (timezone "Europe/Warsaw") - (locale "pl_PL.utf8") - (services services)) +(define-public ayase + (operating-system (kernel linux) + (bootloader bootloader) + (keyboard-layout keyboard-layout) + (initrd microcode-initrd) + (firmware firmware) + (host-name "ayase") + (file-systems file-systems) + (swap-devices swap-devices) + (users users) + (packages packages) + (timezone "Europe/Warsaw") + (locale "pl_PL.utf8") + (services services))) -- cgit v1.2.3