diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-30 23:22:32 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-30 23:22:32 +0100 |
commit | da90a2fbb48a4be0955eaeef93c27e0eefb6901b (patch) | |
tree | 517ecbb2f9743374acbadbbd56a8edc710af33ec | |
parent | 1d17bf4d33048edd7b727bd2451521624b7c99ae (diff) |
Move channels.scm to the top-level
This file is going to collect all channel definitions, independent of any
deployment variables.
Also, update the missed "secrets" name in .guix-channel .
-rw-r--r-- | .guix-channel | 2 | ||||
-rw-r--r-- | channels.scm (renamed from systems/izumi/channels.scm) | 2 | ||||
-rw-r--r-- | systems/izumi/home-configuration.scm | 2 | ||||
-rw-r--r-- | systems/izumi/izumi.org | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.guix-channel b/.guix-channel index 9dc786b..c21b298 100644 --- a/.guix-channel +++ b/.guix-channel @@ -10,5 +10,5 @@ ( name nonguix ) ( url "https://gitlab.com/nonguix/nonguix" ) ) ( channel - ( name secrets ) + ( name private-inputs ) ( url "file:///home/marek/Dokumenty/private-guix-inputs" ) ) ) ) diff --git a/systems/izumi/channels.scm b/channels.scm index 69d4b89..a8e53e3 100644 --- a/systems/izumi/channels.scm +++ b/channels.scm @@ -1,4 +1,4 @@ -( define-module ( systems izumi channels ) +( define-module ( channels ) #:use-module ( gnu home services guix ) #:use-module ( gnu services ) #:use-module ( guix channels ) ) diff --git a/systems/izumi/home-configuration.scm b/systems/izumi/home-configuration.scm index d0441d2..07b39eb 100644 --- a/systems/izumi/home-configuration.scm +++ b/systems/izumi/home-configuration.scm @@ -3,7 +3,7 @@ ( add-to-load-path "/home/marek/src/channel/" ) (use-modules - ( systems izumi channels ) + ( channels ) (gnu home) (gnu home services shells) (gnu packages) diff --git a/systems/izumi/izumi.org b/systems/izumi/izumi.org index 5a2684b..c0b4f9b 100644 --- a/systems/izumi/izumi.org +++ b/systems/izumi/izumi.org @@ -725,7 +725,7 @@ ( add-to-load-path "/home/marek/src/channel/" ) (use-modules - ( systems izumi channels ) + ( channels ) (gnu home) (gnu home services shells) (gnu packages) |