diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-08-13 18:11:30 +0200 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-08-13 18:17:16 +0200 |
commit | 5d3cf449c38198aa90277492103685f0f7bb4d38 (patch) | |
tree | 54589cf874ec5751e8975ddc5d45f5f6060f3f91 /home-configuration.scm | |
parent | 7bb4d97f5f61da3f8c12c4e03b002110eccee490 (diff) |
Tighter Parentheses
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index c613830..7d4eeee 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -1,35 +1,35 @@ -( use-modules - ( gnu home ) - ( gnu home services ) - ( gnu home services shells ) - ( gnu packages ) - ( gnu services ) - ( guix gexp ) ) +(use-modules + (gnu home) + (gnu home services) + (gnu home services shells) + (gnu packages) + (gnu services) + (guix gexp)) -( home-environment - ( packages - ( map - ( compose list specification->package+output ) - ( list "cpupower" "dconf-editor" "emacs" "emacs-aggressive-indent" "emacs-company" "emacs-geiser" "emacs-geiser-guile" "emacs-paredit" "font-google-noto" "git" "git-lfs" "gnome-tweaks" "libreoffice" "pwgen" "seahorse" "trezor-agent" ) ) ) - ( services - ( list - ( service home-bash-service-type - ( home-bash-configuration - ( environment-variables - '(( "EDITOR" . "nano" ) - ( "NVM_DIR" . "$HOME/src/nvm" ) - ( "GUILE_AUTO_COMPILE" . "0" ) ) ) - ( aliases - '(( "grep" . "grep --color=auto" ) - ( "ll" . "ls -l" ) - ( "ls" . "ls -p --color=auto" ) ) ) - ( bash-profile - ( list - ( local-file "/home/marek/src/guix-config/.bash_profile" "bash_profile" ) ) ) - ( bashrc - ( list - ( local-file "/home/marek/src/guix-config/.bashrc" "bashrc" ) - ( local-file "/home/marek/src/guix-config/nvm_init" "nvm_init" ) ) ) ) ) - ( simple-service 'dot-emacs home-files-service-type - ( list - `( ".emacs" ,( local-file "emacs" ) ) ) ) ) ) ) +(home-environment + (packages + (map + (compose list specification->package+output) + (list "cpupower" "dconf-editor" "emacs" "emacs-aggressive-indent" "emacs-company" "emacs-geiser" "emacs-geiser-guile" "emacs-paredit" "font-google-noto" "git" "git-lfs" "gnome-tweaks" "libreoffice" "pwgen" "seahorse" "trezor-agent"))) + (services + (list + (service home-bash-service-type + (home-bash-configuration + (environment-variables + '(("EDITOR" . "nano") + ("NVM_DIR" . "$HOME/src/nvm") + ("GUILE_AUTO_COMPILE" . "0"))) + (aliases + '(("grep" . "grep --color=auto") + ("ll" . "ls -l") + ("ls" . "ls -p --color=auto"))) + (bash-profile + (list + (local-file "/home/marek/src/guix-config/.bash_profile" "bash_profile"))) + (bashrc + (list + (local-file "/home/marek/src/guix-config/.bashrc" "bashrc") + (local-file "/home/marek/src/guix-config/nvm_init" "nvm_init"))))) + (simple-service 'dot-emacs home-files-service-type + (list + `(".emacs" ,( local-file "emacs"))))))) |