summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-09-28 11:46:50 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-09-28 11:46:50 +0200
commit7ff41be0cd994c1b1b3aa5073afd54ad76bcd516 (patch)
tree1db351104b101a70e88dff25e7495f0d868a606a /systems
parent4c6086c205252fde729ac34215d28cd1bece5569 (diff)
refactor(ayase): modernize the code comments
Diffstat (limited to 'systems')
-rw-r--r--systems/ayase.scm11
1 files changed, 3 insertions, 8 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm
index e4c2420..053d0fa 100644
--- a/systems/ayase.scm
+++ b/systems/ayase.scm
@@ -60,7 +60,7 @@
(define root-filesystem-uuid
(uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c"))
-;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (home-environments)
(use-modules (users id1000))
@@ -90,11 +90,9 @@
(device root-filesystem-uuid)
(type "ext4")))
-;; #<swap-space>
(define swap-1
(swap-space (target (swap-label "-1"))))
-;; #<swap-space>
(define swap-2
(swap-space (target (swap-label "-2"))))
@@ -116,7 +114,7 @@
pinentry-qt
pinentry-tty))))
-;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define bootloader
(bootloader-configuration (bootloader grub-efi-bootloader)
@@ -139,12 +137,10 @@
(list home-services)
(system-services)))
-;; (list #<swap-space>)
(define swap-devices
(list swap-1
swap-2))
-;; (list #<user-account>)
(define (users)
(use-modules (users id1000))
(append %base-user-accounts
@@ -155,9 +151,8 @@
(append %default-locale-definitions
(list polish-locale)))
-;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; #<operating-system>
(define-public operating-system*
(operating-system (kernel linux)
(bootloader bootloader)