diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-30 12:44:05 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-30 12:44:05 +0200 |
commit | e03282e26a60f909b6dfce5a15f0bf1e81d8fe78 (patch) | |
tree | d8052145b928ccf3b2e6ca5057405809527acf36 /systems/ayase.scm | |
parent | f9a844ff481a3b8d37c693f196f7a511b57cbd9b (diff) |
refactor(systems): generalize the system definition name
Diffstat (limited to 'systems/ayase.scm')
-rw-r--r-- | systems/ayase.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm index 838a88c..42f29f5 100644 --- a/systems/ayase.scm +++ b/systems/ayase.scm @@ -46,7 +46,7 @@ (list (uid1000-account supplementary-groups*)))) ;; record operating-system -(define-public ayase +(define-public operating-system* (let* ((bootloader-targets (list "/boot/efi")) (efi-filesystem-id (uuid "B4FB-CBD9" 'fat32)) (home-environments `((,uid1000-name ,(uid1000-home-environment host-name*)))) @@ -101,4 +101,4 @@ (services services) (sudoers-file %sudoers-specification*)))) -ayase +operating-system* |