1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

environment.etc: add per-user example

This commit is contained in:
Daiderd Jordan 2017-01-05 23:37:17 +01:00
parent 590bd06ced
commit aaa261694a
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -113,6 +113,16 @@ Either modify the existing file to source/import the one from `/etc/static` or r
. /etc/foorc.local . /etc/foorc.local
fi fi
''; '';
# Global user configuration, symlink these to the appropriate file:
# $ ln -s /etc/static/per-user/lnl/gitconfig ~/.gitconfig
environment.etc."per-user/lnl/gitconfig" = ''
[include]
path = .gitconfig.local
[color]
ui = auto
'';
} }
``` ```