From 6f8c73e9575e6c24e63799a35a05ab816d06ce89 Mon Sep 17 00:00:00 2001 From: Ray Miller Date: Sun, 1 Dec 2024 14:32:27 +0000 Subject: [PATCH] Add personal channel --- home-configuration.scm | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/home-configuration.scm b/home-configuration.scm index a918564..bcaf850 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -9,10 +9,12 @@ (gnu packages gnupg) (gnu services) (guix gexp) + (guix channels) (gnu home services shells) (gnu home services dotfiles) (gnu home services gnupg) - (gnu home services shepherd)) + (gnu home services shepherd) + (gnu home services guix)) (home-environment ;; Below is the list of packages that will show up in your @@ -79,4 +81,15 @@ (home-gpg-agent-configuration (default-cache-ttl 7200) (max-cache-ttl 14400))) - (service home-shepherd-service-type)))) + (service home-shepherd-service-type) + (simple-service 'variant-packages-type + home-channels-service-type + (list (channel + (name 'ray1729) + (url "https://forge.1729.org.uk/ray/guix-packages.git") + (branch "main") + (introduction + (make-channel-introduction + "e4656e91d3eec0d4d3a3f752badc4b8cea4b1502" + (openpgp-fingerprint + "2E19 CF82 55B6 A04D 5550 1F2C 043F 786C 4CD6 81B8")))))))))