summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-28 10:29:59 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-05-28 10:29:59 +0200
commit9f46b45a2deec04091a2931297edf25806437a70 (patch)
treec8c7a9d56a0441978d1a5fdf6f6336a944dedcee
parent38546261f764bd69e58df7f49319a163870907b0 (diff)
clean up channels
-rw-r--r--channels.scm32
1 files changed, 6 insertions, 26 deletions
diff --git a/channels.scm b/channels.scm
index d192c5b..b28e204 100644
--- a/channels.scm
+++ b/channels.scm
@@ -44,33 +44,17 @@
(url "https://git.marekpasnikowski.pl/git/distribution.git")
(introduction distribution-introduction)))
-(define jeko
- (channel (name 'jeko)
- (url "https://framagit.org/Jeko/guix-jeko-channel.git")))
-
-(define guix*
- (channel (name 'guix)
- (branch "private")
- (url "https://git.marekpasnikowski.pl/git/guix.git")
- (introduction guix*-introduction)))
-
-(define nonguix
- (channel (name 'nonguix)
- (url "https://gitlab.com/nonguix/nonguix")
- (introduction nonguix-introduction)))
-
;;; Channel lists
(define aisaka-channels
- (append (list deployment
- jeko
- nonguix)
- %default-channels))
+ (append %default-channels
+ (list deployment
+ distribution)))
(define izumi-channels
- (append (list deployment
- distribution)
- %default-channels))
+ (append %default-channels
+ (list deployment
+ distribution)))
;;; Channel services
@@ -83,7 +67,3 @@
(simple-service 'izumi-channels
home-channels-service-type
izumi-channels))
-
-;;; Testing data
-
-izumi-channels