summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-09-28 22:53:22 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-09-28 22:53:22 +0200
commit280ad6b7c6444f1401c3a420b10ae4d8d9eb0ed9 (patch)
tree93b6824bf95dbbb4b93a89c47a3651479ac4c2ce /systems
parenta86a725f7048138e58b92312af57c5debbeb2643 (diff)
refactor(akashi): prepare operating-system for refactoring
Diffstat (limited to 'systems')
-rw-r--r--systems/akashi.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/systems/akashi.scm b/systems/akashi.scm
index 68b3b34..2b5e5fd 100644
--- a/systems/akashi.scm
+++ b/systems/akashi.scm
@@ -33,7 +33,7 @@
(list uid1000-account))
;; record* operating-system
-(define-public operating-system*
+(define (operating-system*)
(let* ((home-environments `((,uid1000-name ,(uid1000-home-environment host-name*))))
(guix-home (service guix-home-service-type
@@ -60,4 +60,7 @@
;; locale*
services*)))
+(define-public operating-system*
+ (operating-system*))
+
operating-system*