summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-30 23:22:32 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-30 23:22:32 +0100
commitda90a2fbb48a4be0955eaeef93c27e0eefb6901b (patch)
tree517ecbb2f9743374acbadbbd56a8edc710af33ec /systems
parent1d17bf4d33048edd7b727bd2451521624b7c99ae (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 .
Diffstat (limited to 'systems')
-rw-r--r--systems/izumi/channels.scm37
-rw-r--r--systems/izumi/home-configuration.scm2
-rw-r--r--systems/izumi/izumi.org2
3 files changed, 2 insertions, 39 deletions
diff --git a/systems/izumi/channels.scm b/systems/izumi/channels.scm
deleted file mode 100644
index 69d4b89..0000000
--- a/systems/izumi/channels.scm
+++ /dev/null
@@ -1,37 +0,0 @@
-( define-module ( systems izumi channels )
- #:use-module ( gnu home services guix )
- #:use-module ( gnu services )
- #:use-module ( guix channels ) )
-
-( define deployment
- ( let
- ( ( branch "channel" )
- ( introduction
- ( make-channel-introduction
- "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
- ( openpgp-fingerprint
- "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F" ) ) )
- ( name 'deployment )
- ( url "https://git.marekpasnikowski.pl/git/deployment.git" ) )
- ( channel
- ( branch branch )
- ( introduction introduction )
- ( name name )
- ( url url ) ) ) )
-
-( define guix
- ( let
- ( ( introduction
- ( make-channel-introduction
- "9edb3f66fd807b096b48283debdcddccfea34bad"
- ( openpgp-fingerprint
- "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA" ) ) )
- ( name 'guix )
- ( url "https://git.savannah.gnu.org/git/guix.git" ) )
- ( channel
- ( introduction introduction )
- ( name name )
- ( url url ) ) ) )
-
-( define-public izumi-channels-service-type
- ( service home-channels-service-type ( list deployment guix ) ) )
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)