[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50967] [PATCH 02/14] gnu: home-services: Move configuration to (gnu
From: |
Oleg Pykhalov |
Subject: |
[bug#50967] [PATCH 02/14] gnu: home-services: Move configuration to (gnu home services). |
Date: |
Sat, 2 Oct 2021 19:38:22 +0300 |
* gnu/home-services/configuration.scm: Move the content ...
* gnu/home/services/configuration.scm: ... here.
* gnu/local.mk (GNU_SYSTEM_MODULES): Same.
* gnu/home-services/shells.scm: Replace (gnu home-services configuration)
with (gnu home services configuration).
* gnu/home-services/xdg.scm: Same.
---
gnu/home-services/shells.scm | 2 +-
gnu/home-services/xdg.scm | 2 +-
gnu/{home-services => home/services}/configuration.scm | 2 +-
gnu/local.mk | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
rename gnu/{home-services => home/services}/configuration.scm (98%)
diff --git a/gnu/home-services/shells.scm b/gnu/home-services/shells.scm
index ecb02098f7..2be35ac56e 100644
--- a/gnu/home-services/shells.scm
+++ b/gnu/home-services/shells.scm
@@ -19,7 +19,7 @@
(define-module (gnu home-services shells)
#:use-module (gnu services configuration)
- #:use-module (gnu home-services configuration)
+ #:use-module (gnu home services configuration)
#:use-module (gnu home-services utils)
#:use-module (gnu home-services)
#:use-module (gnu packages shells)
diff --git a/gnu/home-services/xdg.scm b/gnu/home-services/xdg.scm
index 94275f3b65..07b25e9e12 100644
--- a/gnu/home-services/xdg.scm
+++ b/gnu/home-services/xdg.scm
@@ -19,7 +19,7 @@
(define-module (gnu home-services xdg)
#:use-module (gnu services configuration)
- #:use-module (gnu home-services configuration)
+ #:use-module (gnu home services configuration)
#:use-module (gnu home-services)
#:use-module (gnu packages freedesktop)
#:use-module (gnu home-services utils)
diff --git a/gnu/home-services/configuration.scm
b/gnu/home/services/configuration.scm
similarity index 98%
rename from gnu/home-services/configuration.scm
rename to gnu/home/services/configuration.scm
index e8f4bc77ec..5e7743e7d6 100644
--- a/gnu/home-services/configuration.scm
+++ b/gnu/home/services/configuration.scm
@@ -17,7 +17,7 @@
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
-(define-module (gnu home-services configuration)
+(define-module (gnu home services configuration)
#:use-module (gnu services configuration)
#:use-module (guix gexp)
#:use-module (srfi srfi-1)
diff --git a/gnu/local.mk b/gnu/local.mk
index d415b892e9..ac0b8947d5 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -77,7 +77,7 @@ GNU_SYSTEM_MODULES = \
%D%/home-services.scm \
%D%/home-services/symlink-manager.scm \
%D%/home-services/fontutils.scm \
- %D%/home-services/configuration.scm \
+ %D%/home/services/configuration.scm \
%D%/home-services/shells.scm \
%D%/home-services/shepherd.scm \
%D%/home-services/mcron.scm \
--
2.33.0
- [bug#50967] [PATCH 04/12] gnu: home-services: Move utils to (gnu services)., (continued)
- [bug#50967] [PATCH 04/12] gnu: home-services: Move utils to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 06/12] gnu: home-services: Move shells to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 07/12] gnu: home-services: Move xdg to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 05/12] gnu: home-services: Move fontutils to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 11/12] scripts: home: (gnu home-services bash) -> (gnu services bash)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 09/12] gnu: home-services: Move mcron to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 08/12] gnu: home-services: Move shepherd to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 10/12] gnu: home-services: Change %service-type-path and filter services., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 12/12] doc: (gnu home-services) -> (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 01/14] tests: Add tests for guix home cli., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 02/14] gnu: home-services: Move configuration to (gnu home services).,
Oleg Pykhalov <=
- [bug#50967] [PATCH 03/14] gnu: home-services: Move symlink-manager to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 05/14] gnu: home-services: Move fontutils to (gnu services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 07/14] gnu: home-services: Move xdg to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 04/14] gnu: home-services: Move utils to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 06/14] gnu: home-services: Move shells to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 09/14] gnu: home-services: Move mcron to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 10/14] scripts: home: (gnu home-services bash) -> (gnu home services bash)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 08/14] gnu: home-services: Move shepherd to (gnu home services)., Oleg Pykhalov, 2021/10/02
- [bug#50967] [PATCH 12/14] gnu: home-services: Update %service-type-path., Oleg Pykhalov, 2021/10/02