diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-24 14:31:45 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-24 14:40:29 +0200 |
commit | 267f62d01512e4b46eac865dd0f55a6c917f9d29 (patch) | |
tree | e294c2b5b2ea78412871f304e066cc046f1314c0 /users | |
parent | 7ade7e29ba1dc1585398db801812126818319549 (diff) |
delete remaining bindings to Distribution channel
This removal is part of a process to decomission Distribution channel.
---
The ultimate goal is to move useful code from Distribution channel to either Sovereign or Deployment channel.
Everything else will be deleted and ultimately will be removed from network.
---
Module (deployment systems aisaka) has a dangling import of (suweren update).
Module (deployment users id1000) uses update-commands from (suweren update).
Guix-channel file includes dependency on Distribution channel.
---
The dangling import of (suweren update) is deleted from (deployment systems aisaka).
The update-commands binding is replaced with a definition from Sovereign channel.
The dependency on Distribution channel is removed from the list.
---
With this change Deployment channel is completely independent of Distribution, which can be deleted now.
Diffstat (limited to 'users')
-rw-r--r-- | users/id1000.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/users/id1000.scm b/users/id1000.scm index d299b19..dc2d0e6 100644 --- a/users/id1000.scm +++ b/users/id1000.scm @@ -27,12 +27,12 @@ #:prefix gnu:system:accounts:) #:use-module ( (guix records) #:prefix guix:records:) + #:use-module ( (sovereign services admin) + #:prefix sovereign:services:admin:) #:use-module ( (sovereign services fontutils) #:prefix sovereign:services:fontutils:) #:use-module ( (sovereign systems) - #:prefix sovereign:systems:) - #:use-module ( (suweren update) - #:prefix suweren:update:)) + #:prefix sovereign:systems:)) (guix:records:define-record-type* <dkimproxy-out-signature-configuration> dkimproxy-out-signature-configuration @@ -572,7 +572,7 @@ environment-variables l-git-configuration sovereign:services:fontutils:home-fontconfig-service-type)) - (l-services (cons* suweren:update:update-commands + (l-services (cons* sovereign:services:admin:update-commands l-home-dbus-service l-home-pipewire-service l-home-shepherd-service |