From 0f2a739cb67a7aa28dcf881b66220914a048789b Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sat, 12 Oct 2024 07:41:19 +0200 Subject: refactor(mcdowell): localize import of module (gnu services guix) --- systems/mcdowell.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index 3abfd4d..8bd3d36 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -1,5 +1,4 @@ (define-module (systems mcdowell) - #:use-module (gnu services guix) ; guix-home-service-type #:use-module (gnu system keyboard) ; keyboard-layout #:use-module (machines portable-bios) ; bootloader-configuration* ; file-systems* @@ -40,7 +39,8 @@ ((@ (gnu system keyboard) keyboard-layout) "pl")) -(define guix-home +(define (home-environments-mcdowell) + (use-modules (gnu services guix)) ((@ (gnu services) service) guix-home-service-type home-environments)) @@ -56,7 +56,7 @@ (define services-mcdowell (append (desktop-services-mcdowell) - (list guix-home))) + (list (home-environments-mcdowell)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -- cgit v1.2.3