system-configuration/modules/home-config/git.scm

git.scm

1
(define-module (home-config git)
2
  #:use-module (guix gexp)
3
  #:use-module (home utils)
4
  #:export (git-home))
5
6
(define git-home
7
  (simple-file-home
8
    (local-file "files/gitconfig")
9
    ".gitconfig"))
10