diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-03 06:40:54 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-03 06:40:54 +0200 |
commit | 23cda000022202daf2fd5e2f963545c88608b5cd (patch) | |
tree | f76dd18e82840f59edf0805f53f2c758554c304f /systems/izumi | |
parent | fe69343de7f6e4722f93f2eb71c36756000b78b3 (diff) |
refactor(izumi): consolidate EMACS-GUIX-MODULES
Diffstat (limited to 'systems/izumi')
-rw-r--r-- | systems/izumi/home-configuration.scm | 17 | ||||
-rw-r--r-- | systems/izumi/izumi.org | 28 |
2 files changed, 12 insertions, 33 deletions
diff --git a/systems/izumi/home-configuration.scm b/systems/izumi/home-configuration.scm index dcb6ace..45d3e78 100644 --- a/systems/izumi/home-configuration.scm +++ b/systems/izumi/home-configuration.scm @@ -1,17 +1,12 @@ (define-module (systems izumi home-configuration)) -(use-modules - ( channels ) - (gnu home) - (gnu home services shells)) - -(use-modules - (gnu) - (gnu home services)) - -(use-package-modules emacs-xyz) +(use-modules (channels) + (gnu) + (gnu home) + (gnu home services) + (gnu home services shells) + (gnu packages emacs-xyz)) -(use-service-modules) (use-modules (gnu) (gnu home services) diff --git a/systems/izumi/izumi.org b/systems/izumi/izumi.org index 93623bc..f04e8d1 100644 --- a/systems/izumi/izumi.org +++ b/systems/izumi/izumi.org @@ -333,12 +333,13 @@ #+BEGIN_SRC scheme :tangle home-configuration.scm (define-module (systems izumi home-configuration)) - (use-modules - ( channels ) - (gnu home) - (gnu home services shells)) + (use-modules (channels) + (gnu) + (gnu home) + (gnu home services) + (gnu home services shells) + (gnu packages emacs-xyz)) - <<EMACS-GUIX-MODULES>> <<EMACS-ORG-FC-TN-MODULES>> <<ESSENTIAL-HOME-MODULES>> <<SHELLS-MODULES>> @@ -568,20 +569,3 @@ "calculated based on how well you remembered the contents of the card.\n")) (license license:gpl3+)))) #+END_SRC - -* [[https://emacs-guix.gitlab.io/website/manual/latest/html_node/index.html][Emacs-Guix]] - -** [[https://emacs-guix.gitlab.io/website/manual/latest/html_node/Installation.html][2. Installation]] - -#+NAME: EMACS-GUIX-MODULES -#+BEGIN_SRC scheme - (use-modules - (gnu) - (gnu home services)) - - (use-package-modules emacs-xyz) - - (use-service-modules) -#+END_SRC - -* EOF |