diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-09-21 21:27:54 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-09-21 21:27:54 -0400 |
commit | dbf2e7dde9c2d9a0ad9993241e91ac8d8aaa2540 (patch) | |
tree | cdc25ab483338b7eb1902c4a22f408a3684c5f77 | |
parent | 989db4c54603ffa7609b4e3540ddd500d2c893be (diff) |
Add my personal channel to common home config.
-rw-r--r-- | common-home.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/common-home.scm b/common-home.scm index e312da3..8c78f7b 100644 --- a/common-home.scm +++ b/common-home.scm @@ -17,8 +17,10 @@ (use-modules (gnu home) (gnu packages) (gnu services) + (guix channels) (guix gexp) (gnu home services) + (gnu home services guix) (gnu home services shells)) (define (dotfiles . file-names) @@ -36,4 +38,24 @@ ("ls" . "ls -ahlp --color=auto"))))) (simple-service 'dotfiles home-files-service-type - (dotfiles ".emacs.d/init.el" ".guile" ".ssh/config")))) + (dotfiles ".emacs.d/init.el" ".guile" ".ssh/config")) + (simple-service 'channels + home-channels-service-type + (list + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + (channel + (name 'dthompson) + (url "https://git.dthompson.us/guix-channel.git") + (branch "main") + (introduction + (make-channel-introduction + "df2e993dbfe9e45e8ad66226d3a136e3ffcbebf8" + (openpgp-fingerprint + "8CCB A7F5 52B9 CBEA E1FB 2915 8328 C747 0FF1 D807")))))))) |