diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-03 22:10:39 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2023-02-03 22:10:39 +0100 |
commit | 9a9c98b3248b3330e35ae61df09c61686e95bc1b (patch) | |
tree | 7acf3937edb43f36a35073a25e7aac58e50168d8 /home-configuration.scm | |
parent | 2dce1762223312e2a6cd099737ec5eed1fe694f1 (diff) |
Reindent Home Configuration
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index c30a7c9..02a3713 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -124,12 +124,12 @@ (default-value #f))) ssh-configuration (service home-bash-service-type - (home-bash-configuration - (environment-variables '(("EDITOR" . "emacs -nw") - ("LIBGL_ALWAYS_SOFTWARE" . "1") - ("NVM_DIR" . "$HOME/src/nvm") - ("GUILE_AUTO_COMPILE" . "0"))) - (aliases `(("grep" . "grep --color=auto ") + (home-bash-configuration + (environment-variables '(("EDITOR" . "emacs -nw") + ("LIBGL_ALWAYS_SOFTWARE" . "1") + ("NVM_DIR" . "$HOME/src/nvm") + ("GUILE_AUTO_COMPILE" . "0"))) + (aliases `(("grep" . "grep --color=auto ") ("ll" . "ls -l ") ("ls" . "ls -p --color=auto ") ("pull-guix" . ,pull-guix) @@ -140,11 +140,11 @@ ("reconfigure-system-" . ,reconfigure-system-) ("system-update" . ,system-update) ("system-update-" . ,system-update-))) - (bash-profile `(,(local-file "bash_profile"))) - (bashrc `(,(local-file "bashrc"))))) + (bash-profile `(,(local-file "bash_profile"))) + (bashrc `(,(local-file "bashrc"))))) (simple-service 'configuration-files - home-files-service-type - `((".config/git/config" ,(local-file "git.config")) - (".config/guix/shell-authorized-directories" - ,(local-file "guix-shell-authorized-directories")) - (".emacs" ,(local-file "emacs.el"))))))) + home-files-service-type + `((".config/git/config" ,(local-file "git.config")) + (".config/guix/shell-authorized-directories" + ,(local-file "guix-shell-authorized-directories")) + (".emacs" ,(local-file "emacs.el"))))))) |