This topic was raised a few times during development of Guix Home project and also during the review of wip-guix-home branch. I made a separate thread to do an exhaustive discussion of it. * Services and Confusion It's an optional section, you can skip it, but I still find it somehow related to the topic. I want to re-raise the issue related to system services concept. When I started using Guix I found system services to be confusing, originally I thought it's a way to declare services managed by init system, but later I realised that only some of system services becomes Shepherd services and many of them doesn't. It's not a unique problem I see this issue appear again and again in different Guix chats and communities. - System services :: just building blocks, nodes of DAG representing a system, which after folding, results in a complete operating system or other artifact. - Shepherd services :: long-living processes/daemons managed by init system or user-space Shepherd. It's what people used to refer as services. It will be very hard and costly to rename system services to something less confusing, but at least let's try to keep those concepts as distinct as possible. Probably originally system and Shepherd services were closely related, but not now, so let's express it very clearly in docs/chats/mailing lists. Another player on this field is "home services", which is a similar to system services, but used for describing a separate DAG, which after folding, results in home environment (artifact containing user's program configurations and profile with packages declared by user). * Putting Home Services to ~(gnu services ...)~ In the thread https://issues.guix.gnu.org/49419#18 Ludovic suggested: > Regarding module names: what about putting everything in the (gnu > home …) name space. For services, I wonder if we could simply use > (gnu services home), for the essential services, and other (gnu > services …) module, but that assumes some code can be shared between > System and Home. Thoughts? ** Shortcomings While it's a nice idea, I see some shortcomings here: *** Code Reuse Mcron, Shepherd and a few other fundamental pieces are reused between Guix Home and Guix System, but it's easily done by exporting a few symbols from related modules. Records even for the same services have slightly different fields and because of macro nature can't be reused between Home and System services. In more details I mentioned this problem here: https://lists.sr.ht/~abcdw/rde-devel/%3C87y2cqifpx.fsf%40yoctocell.xyz%3E#%3C878s4l8kai.fsf@trop.in%3E The intersection of home and system services should be very low, so there is not much benifit here as well. Utilitary functions like serialization helpers and so on can be declared in a shared module and reused between System and Home services. Recaping the section: All the necessarry code already reused, the future home/system services are not expected to share much code, different utilitary functions can be shared via (gnu services utils) or (gnu services configuration) modules. *** Confusion I already mentioned that I see a lot of confusion between System and Shepherd services and I expect some confusion between home and system services, it will be especially true if we place them in the same namespace. People will be trying to use home services inside operating systems, #+begin_src scheme (operating-system (services (list (service home-mcron-service-type ...)))) #+end_src and configuration record for system services inside home services. #+begin_src scheme (home-environment ... (service home-mcron-service-type (mcron-configuration ...))) #+end_src ** Summary Let's keep System and Home services separate for the sake of clarity, reuse code via shared modules or just exports in (gnu services ...). * Putting Home Services to ~(gnu home services ...)~ Another idea I saw is to move: ~(gnu home-services)~ -> ~(gnu home services)~ ~(gnu home-services gnupg)~ -> ~(gnu home services gnupg)~ ... Sounds reasonable, I'll just mention the ideas behind ~home-services~ name. System services have following naming conventions for the public API: in ~(gnu services CATEGORY)~ there are ~APP-service-type~, ~APP-configuration~ and other related symbols. Not to be confused, I decided to prefix all service types and configurations with ~home-~, so the exported symbols looks like: ~home-APP-service-type~ and ~home-APP-configuration~. The same rule applies for module names: We do the same way as system services do, but with ~home-~ prefix: ~(gnu services CATEGORY)~ for system, ~(gnu home-services CATEGORY)~ for home. All namespaces containing ~system~ now becomes ~home~: ~(gnu system)~ and ~(gnu home)~ respectively. I find such approach to be consistent and doesn't see to much reasons to change it. However, ~(gnu home services ...)~ also looks cool, but it would be a little inconsistent with system services, which will have one level of nestiness less: ~(gnu services)~. IMO, ~(gnu home services ...)~ would be a good choice if we use ~(gnu system services)~ for system services. * Conclusion I'm quite satisfied with current state of naming, but probably I miss some points and, also, maybe there are some other good or even better naming schemes. In case there is a better naming approach, we can decide on using it, It would be not an easy change, but until wip-guix-home branch is not merged, it still easier to do this than do it later. LMKWYT.