diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-01-08 22:27:29 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2023-01-08 22:27:29 +0100 |
commit | 33a75791416d32608851b22b86f1bde47f12f8b1 (patch) | |
tree | 1635cd5a82732548fb563b1ab264fe217925cc80 /home-configuration.scm | |
parent | d5579097778fccc3e95de0dd5d37de54f54c5c0c (diff) |
Install Flashrom on Aisaka
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index cc29a52..28d9185 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -1,4 +1,7 @@ +(add-to-load-path "./services") + (define-module (aisaka-home-configuration) + #:use-module (flashrom) #:use-module (gnu home) #:use-module (gnu home services) #:use-module (gnu home services shells) @@ -82,6 +85,7 @@ "emacs-geiser" "emacs-geiser-guile" "emacs-nov-el" + "emacs-org-auto-tangle" "emacs-org-contacts" "emacs-org-contrib" "font-google-noto" @@ -108,7 +112,8 @@ "waybar" "zip"))) (services - `(,(service home-bash-service-type + `(,(service flashrom-service-type) + ,(service home-bash-service-type (home-bash-configuration (environment-variables '(("EDITOR" . "emacs -nw") ("LIBGL_ALWAYS_SOFTWARE" . "1") @@ -125,12 +130,8 @@ ("reconfigure-system-" . ,reconfigure-system-) ("system-update" . ,system-update) ("system-update-" . ,system-update-))) - (bash-profile `(,(local-file (string-append config-prefix - ".bash_profile") - "bash_profile"))) - (bashrc `(,(local-file (string-append config-prefix - ".bashrc") - "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")) |