diff options
| author | Charles Roelli <charles@aurox.ch> | 2026-01-30 10:28:59 +0100 |
|---|---|---|
| committer | Charles Roelli <charles@aurox.ch> | 2026-01-30 10:28:59 +0100 |
| commit | 6a33cb717a116f729540cb116c06d6be69e0efc8 (patch) | |
| tree | b41054094f58416c837e5b00165755d4e9263fe4 /home-configuration.scm | |
| parent | 0828b86eb4d17d9d2575e432fc4743ca3398658b (diff) | |
New home-configuration module with public %home-environment
Diffstat (limited to 'home-configuration.scm')
| -rw-r--r-- | home-configuration.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 7d240de..8953adf 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -4,6 +4,7 @@ ;; need to capture the channels being used, as returned by "guix describe". ;; See the "Replicating Guix" section in the manual. +(define-module (home-configuration)) (use-modules (gnu home) (gnu packages) (gnu services) @@ -14,7 +15,7 @@ (gnu home services mail) (gnu home services shells)) -(home-environment +(define-public %home-environment (home-environment ;; Below is the list of packages that will show up in your ;; Home profile, under ~/.guix-home/profile. (packages @@ -82,4 +83,6 @@ "d059076214e6cb8c00539649a43e603b7e9f2c90" (openpgp-fingerprint "7FD6 B094 1B34 68AE 6F19 04AE D3C9 09F4 ADEF 6FE2"))))))) - %base-home-services))) + %base-home-services)))) + +%home-environment |
