diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:59:12 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:59:12 -0700 |
| commit | f36c64f008c8d822e42f325bfb9508844db552f4 (patch) | |
| tree | 45dc9a7429faaf4f97bd795c0af5905610d464c3 /hosts/copenhagen/home/c.nix | |
| parent | b9781d7882e544a2d64c2e70ba9685fa870772bc (diff) | |
Setup git on copenhagen
Diffstat (limited to 'hosts/copenhagen/home/c.nix')
| -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 ]; |