diff options
author | Andrew Tropin <andrew@trop.in> | 2021-12-15 10:25:22 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-19 23:39:55 +0100 |
commit | ed818c66d371656c869f43d7a7cbbcfba2df647b (patch) | |
tree | 1143caab4cdc8e2b3261e6999d8de1e53ce6daa0 /gnu/home.scm | |
parent | 7e5ed0884482f5ce55c9face4b081d8b16306cd2 (diff) |
home: Add gexp-compiler for home-environments.
* gnu/home.scm (home-environment-compiler): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/home.scm')
-rw-r--r-- | gnu/home.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/home.scm b/gnu/home.scm index d8134693e5..a9f0a469a5 100644 --- a/gnu/home.scm +++ b/gnu/home.scm @@ -25,6 +25,8 @@ #:use-module (gnu services) #:use-module (guix records) #:use-module (guix diagnostics) + #:use-module (guix gexp) + #:use-module (guix store) #:export (home-environment home-environment? @@ -104,3 +106,11 @@ of HOME-PROVENANCE-SERVICE-TYPE to its services." (inherit he) (services (cons (service home-provenance-service-type config-file) (home-environment-user-services he))))) + +(define-gexp-compiler (home-environment-compiler (he <home-environment>) + system target) + ((store-lift + (lambda (store) + (run-with-store store (home-environment-derivation he) + #:system system + #:target target))))) |