diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-04-20 06:03:51 +0200 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-04-20 06:03:51 +0200 |
commit | 2ec618fadef39db6aed82b015c53d88febb2a334 (patch) | |
tree | f72788e425110014136cc016b24ece78182abace /home-configuration.scm | |
parent | b3d752799947e7577b88a242456b90a6d93d29e5 (diff) |
Multiline Package List
* home-configuration.scm (packages) [list]: Split the list of packages into
multiple lines in order to maintain it more easily in the future.
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 3e678fc..94e35ea 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -15,7 +15,21 @@ (packages (map (compose list specification->package+output) - (list "dconf-editor" "evolution" "font-google-noto" "git" "git-lfs" "gnome-shell-extensions" "gnome-tweaks" "gst-plugins-bad" "gst-plugins-base" "gst-plugins-good" "gst-plugins-ugly" "pwgen" "seahorse" "trezor-agent"))) + (list + "dconf-editor" + "evolution" + "font-google-noto" + "git" + "git-lfs" + "gnome-shell-extensions" + "gnome-tweaks" + "gst-plugins-bad" + "gst-plugins-base" + "gst-plugins-good" + "gst-plugins-ugly" + "pwgen" + "seahorse" + "trezor-agent"))) (services (list |