diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-26 08:21:14 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-26 08:21:14 +0000 |
commit | b4f305491a2679d1494afa2fa97e351d32881a8e (patch) | |
tree | 38d9f027581c8ff99a4256703775e89ca90e13d0 | |
parent | 6967787017df1dceb4ea67e17ebb336d0fd0cd03 (diff) |
add new default channel configuration
-rw-r--r-- | px/system/os.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/px/system/os.scm b/px/system/os.scm index 31e5034..cc6ceeb 100644 --- a/px/system/os.scm +++ b/px/system/os.scm @@ -275,7 +275,17 @@ return @code{defaule-value} if there is no modification applied." (authorized-keys (append (list %px-substitute-server-key %nonguix-substitute-server-key) - existing-keys))))) + existing-keys)) + (channels (append (list (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")))) + %default-channels)))))) (define* (make-os config #:key (kernel 'libre) |