diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-06-28 17:35:34 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-06-28 17:35:34 +0200 |
commit | 1554bfd225a0e7426942feabb899407660c9a1fd (patch) | |
tree | d443370b35e5aba58ccb04434672549b7ce7119e | |
parent | b522233858c9327144efe1ea71f73743f8dc7fc8 (diff) |
Flatten some configuration
-rw-r--r-- | system-configuration.scm | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/system-configuration.scm b/system-configuration.scm index a367f93..f27d047 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -11,13 +11,9 @@ ssh xorg ) -( operating-system - ( locale "pl_PL.utf8" ) - ( timezone "Europe/Warsaw" ) - ( keyboard-layout - ( keyboard-layout "pl" ) ) - ( host-name "aisaka" ) - ( users +( define keyboard-layouts ( keyboard-layout "pl" ) ) + +( define user-accounts ( cons* ( user-account ( name "marek" ) @@ -30,6 +26,13 @@ "audio" "video" ) ) ) %base-user-accounts ) ) + +( operating-system + ( locale "pl_PL.utf8" ) + ( timezone "Europe/Warsaw" ) + ( keyboard-layout keyboard-layouts ) + ( host-name "aisaka" ) + ( users user-accounts ) ( packages ( append ( map |