diff options
Diffstat (limited to 'hosts/copenhagen/home')
| -rw-r--r-- | hosts/copenhagen/home/c.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hosts/copenhagen/home/c.nix b/hosts/copenhagen/home/c.nix index 1190c0f..9d8bbe6 100644 --- a/hosts/copenhagen/home/c.nix +++ b/hosts/copenhagen/home/c.nix @@ -17,6 +17,26 @@ allowOther = true; }; + + programs = { + git = { + enable = true; + + userName = "Caroline Larimore"; + userEmail = "caroline@larimo.re"; + + signing = { + key = "DE64538967CA0C68"; + signByDefault = true; + }; + + ignores = [ + "*~" + "*.swp" + ]; + }; + }; + home.packages = with pkgs; [ cloc ]; |