diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 09:53:59 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 09:53:59 +0100 |
commit | 1e33d6248620eb599e5f7e1b10de68cd5f2b5581 (patch) | |
tree | e0afffc782d8611e9064637410ec83ea7f60a9dc /system-configuration.scm | |
parent | 964d31be878b1ad5de615082117bd5385d075e7c (diff) |
System configuration: break out users
Diffstat (limited to 'system-configuration.scm')
-rw-r--r-- | system-configuration.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/system-configuration.scm b/system-configuration.scm index 1bf2d17..4511332 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -19,19 +19,22 @@ (define host-name "aisaka") +(define users + (cons* (user-account (name "marek") + (comment "Marek Paśnikowski") + (group "users") + (home-directory "/home/marek") + (supplementary-groups '("wheel" + "netdev" + "audio" + "video"))) + %base-user-accounts)) + (operating-system (locale locale) (timezone timezone) (keyboard-layout keyboard-layout) (host-name host-name) - (users (cons* (user-account (name "marek") - (comment "Marek Paśnikowski") - (group "users") - (home-directory "/home/marek") - (supplementary-groups '("wheel" - "netdev" - "audio" - "video"))) - %base-user-accounts)) + (users users) (packages (append (map (compose list specification->package+output) '("guile-spec" |