diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 02:01:12 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 02:01:12 +0100 |
commit | 24ad5177e8029c0c0d463c9554f15f1f44fd9d82 (patch) | |
tree | 4fb550a157ca6fd144d394be7675b8c1ec1a660b /home-configuration.scm | |
parent | e9f6c85c3942f50f717e6daabc139854b6ee4835 (diff) |
Home configuration: break out packages
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 51 |
1 files changed, 27 insertions, 24 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index f6e2a3b..fad87b7 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -6,33 +6,36 @@ #:use-module (gnu services) #:use-module (guix gexp)) +(define packages + '("cpupower" + "dconf-editor" + "emacs-no-x" + "emacs-ac-geiser" + "emacs-aggressive-indent" + "emacs-geiser" + "emacs-geiser-guile" + "emacs-iedit" + "emacs-multiple-cursors" + "emacs-paredit" + "font-google-noto" + "git" + "git-lfs" + "gnome-tweaks" + "gnupg" + "icecat" + "jami" + "libreoffice" + "pwgen" + "seahorse" + "sicp" + "trezor-agent" + "unzip" + "zip")) + (define home-packages (map (compose list specification->package+output) - '("cpupower" - "dconf-editor" - "emacs-no-x" - "emacs-ac-geiser" - "emacs-aggressive-indent" - "emacs-geiser" - "emacs-geiser-guile" - "emacs-iedit" - "emacs-multiple-cursors" - "emacs-paredit" - "font-google-noto" - "git" - "git-lfs" - "gnome-tweaks" - "gnupg" - "icecat" - "jami" - "libreoffice" - "pwgen" - "seahorse" - "sicp" - "trezor-agent" - "unzip" - "zip"))) + packages)) (define config-prefix "/home/marek/src/guix-config/") |