26 lines
590 B
Nix
26 lines
590 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
in
|
|
pkgs.lib.mkAfter ''[sendemail]
|
|
smtpserver = smtp.mailbox.org
|
|
smtpuser = jhonas@mailbox.org
|
|
smtpencryption = tls
|
|
smtpserverport = 587
|
|
|
|
[lfs]
|
|
repositoryformatversion = 0
|
|
[filter "lfs"]
|
|
clean = git-lfs clean -- %f
|
|
smudge = git-lfs smudge -- %f
|
|
process = git-lfs filter-process
|
|
required = true
|
|
|
|
[safe]
|
|
directory = /home/teutat3s/CodeRoom/git.b12f.io/pub-solar/os
|
|
|
|
[includeIf "gitdir:~/CodeRoom/greenbaum.cloud/"]
|
|
path = ~/.config/git/config_greenbaum.cloud
|
|
|
|
[includeIf "gitdir:~/CodeRoom/git.b12f.io/"]
|
|
path = ~/.config/git/config_git.b12f.io''
|