diff options
Diffstat (limited to 'systems/mcdowell.scm')
-rw-r--r-- | systems/mcdowell.scm | 6 |
1 files 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)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |