diff options
| author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-04-03 13:14:31 +0200 |
|---|---|---|
| committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-04-03 13:14:31 +0200 |
| commit | b32e4a21b98da6240884a9be60a45dd65ae5a62a (patch) | |
| tree | 335915c30a631117d332fbd3dd1a244b78356d2a | |
| parent | c777e603b49c52a491bc182c165cc3a5a2f5c9f8 (diff) | |
channels: include the upstream guix channel: resignation from custom guix channel
| -rw-r--r-- | channels.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/channels.scm b/channels.scm index ac8feb4..7e4db53 100644 --- a/channels.scm +++ b/channels.scm @@ -62,10 +62,15 @@ ;;; Channel lists (define aisaka-channels - (list deployment jeko nonguix)) + (append (list deployment + jeko + nonguix) + %default-channels)) (define izumi-channels - (list deployment distribution guix*)) + (append (list deployment + distribution) + %default-channels)) ;;; Channel services |
