summaryrefslogtreecommitdiff
path: root/home-config
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2024-02-26 12:34:12 -0500
committerRyan Schanzenbacher <ryan@rschanz.org>2024-02-26 12:34:12 -0500
commite416635423a76794c45a273217c875b25c233e7a (patch)
treeebde9ec0dc86aff892f80e2df5d594f8733ecb74 /home-config
parentdc223823d42007fef7f1fce5393224190f55476e (diff)
added gitconfig to guix environment
Diffstat (limited to 'home-config')
-rw-r--r--home-config/gitconfig14
-rw-r--r--home-config/home-configuration.scm1
2 files changed, 15 insertions, 0 deletions
diff --git a/home-config/gitconfig b/home-config/gitconfig
new file mode 100644
index 0000000..ee6224b
--- /dev/null
+++ b/home-config/gitconfig
@@ -0,0 +1,14 @@
1[user]
2 email = ryan@rschanz.org
3 name = Ryan Schanzenbacher
4[commit]
5 gpgSign = true
6[filter "lfs"]
7 clean = git-lfs clean -- %f
8 smudge = git-lfs smudge -- %f
9 process = git-lfs filter-process
10 required = true
11[color]
12 ui = auto
13[init]
14 defaultBranch = main
diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm
index 81ee992..7e22c4d 100644
--- a/home-config/home-configuration.scm
+++ b/home-config/home-configuration.scm
@@ -147,6 +147,7 @@
147 ;(".gnupg/sshcontrol" ,(local-file "gnupg/sshcontrol")) 147 ;(".gnupg/sshcontrol" ,(local-file "gnupg/sshcontrol"))
148 ;(".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf")) 148 ;(".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf"))
149 (".fonts" ,(local-file "fonts" #:recursive? #t)) 149 (".fonts" ,(local-file "fonts" #:recursive? #t))
150 (".gitconfig" ,(local-file "gitconfig"))
150 (".docker/cli-plugins" ,(local-file "docker/cli-plugins" #:recursive? #t)) 151 (".docker/cli-plugins" ,(local-file "docker/cli-plugins" #:recursive? #t))
151 (".nix-channels" ,(local-file "nix-channels")))) 152 (".nix-channels" ,(local-file "nix-channels"))))
152 (service home-pipewire-service-type) 153 (service home-pipewire-service-type)