summaryrefslogtreecommitdiff
path: root/px
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2023-11-06 20:48:51 +0000
committerFranz Geffke <franz@pantherx.org>2023-11-06 20:48:51 +0000
commitddeb32d7002a4b55fd815a5c76f3f0bd995eb5c5 (patch)
tree507331b5a7b756ff69db3b425c90991140f76e75 /px
parent47b4c9c854915df93893dbaa993accfacf9027fe (diff)
system/config: export %default-pantherx-channel
Diffstat (limited to 'px')
-rw-r--r--px/system/config.scm16
1 files changed, 15 insertions, 1 deletions
diff --git a/px/system/config.scm b/px/system/config.scm
index ee27e77..dfa8799 100644
--- a/px/system/config.scm
+++ b/px/system/config.scm
@@ -20,6 +20,7 @@
#:use-module (px services base)
#:use-module (px system os)
#:use-module (guix gexp)
+ #:use-module (guix channels)
#:use-module (srfi srfi-1)
#:export (px-core-os
@@ -34,7 +35,8 @@
px-gui-arm-os
px-desktop-arm-os
- %px-server-open-ports-common)
+ %px-server-open-ports-common
+ %default-pantherx-channel)
;; Re-export for convenience
#:re-export (%px-core-services
@@ -74,6 +76,18 @@
(define %px-server-open-ports-common
'(("tcp" "ssh" "http" "https")))
+;; For use in unattended-upgrade-service-type
+(define %default-pantherx-channel
+ (channel
+ (name 'pantherx)
+ (branch "master")
+ (url "https://channels.pantherx.org/git/panther.git")
+ (introduction
+ (make-channel-introduction
+ "54b4056ac571611892c743b65f4c47dc298c49da"
+ (openpgp-fingerprint
+ "A36A D41E ECC7 A871 1003 5D24 524F EB1A 9D33 C9CB")))))
+
;;;
;;; CORE
;;;