summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-22 12:26:10 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-22 15:56:35 +0200
commitd9ef2ccec737b077862f6a9280992e4d55742d70 (patch)
tree6f59a24725dcc756211414523f2aea2084182433 /systems
parent20fc12b09f0bc3ccf044bba9e021f8d8b7ec66fd (diff)
feat: implement minimal user account for marekpasnikowski
Diffstat (limited to 'systems')
-rw-r--r--systems/mcdowell.scm18
1 files changed, 16 insertions, 2 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm
index 4e97866..55fb530 100644
--- a/systems/mcdowell.scm
+++ b/systems/mcdowell.scm
@@ -1,9 +1,23 @@
(define-module (systems mcdowell)
- #:use-module (machines portable-bios) ; portable-operating-system
+ #:use-module (machines portable-bios) ; bootloader-configuration*
+ ; file-systems*
+ #:use-module (suweren system) ; %suweren-operating-system
+ #:use-module (users marekpasnikowski) ; marekpasnikowski-account
)
;; string
(define host-name*
"mcdowell")
-(operating-system* host-name*)
+;; (record user-account)
+(define users*
+ (list marekpasnikowski-account))
+
+;; record operating-system
+(define operating-system*
+ (%suweren-operating-system bootloader-configuration*
+ host-name*
+ (file-systems* host-name*)
+ users*))
+
+operating-system*