diff options
| author | Charles Roelli <charles@aurox.ch> | 2026-01-21 16:39:20 +0100 |
|---|---|---|
| committer | Charles Roelli <charles@aurox.ch> | 2026-01-21 16:39:20 +0100 |
| commit | 5875e38d9a02b7b4f8317cc180a686f817efc252 (patch) | |
| tree | 60d355c43347d6afe3b60aee8d823994cbd90ac3 | |
| parent | 568243e0d90d5b9390d5f85fd536ed197effebdf (diff) | |
Set up custom channel
| -rw-r--r-- | home-configuration.scm | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 0e1796c..bf7e48e 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -7,8 +7,10 @@ (use-modules (gnu home) (gnu packages) (gnu services) + (guix channels) (guix gexp) - (gnu home services) + (gnu home services) + (gnu home services guix) (gnu home services shells)) (home-environment @@ -35,5 +37,17 @@ ".bash_logout" "bash_logout"))))) (service home-files-service-type - (list (list ".emacs" (local-file ".emacs" "emacs"))))) + (list (list ".emacs" (local-file ".emacs" "emacs")))) + (simple-service 'variant-packages-service + home-channels-service-type + (list + (channel + (name 'variant-packages) + (branch "main") + (url "https://codeberg.org/charlesroelli/channel.git") + (introduction + (make-channel-introduction + "d059076214e6cb8c00539649a43e603b7e9f2c90" + (openpgp-fingerprint + "7FD6 B094 1B34 68AE 6F19 04AE D3C9 09F4 ADEF 6FE2"))))))) %base-home-services))) |
