aboutsummaryrefslogtreecommitdiff
path: root/hosts/copenhagen
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-07-22 19:59:12 -0700
committerCaroline Larimore <caroline@larimo.re>2024-07-22 19:59:12 -0700
commitf36c64f008c8d822e42f325bfb9508844db552f4 (patch)
tree45dc9a7429faaf4f97bd795c0af5905610d464c3 /hosts/copenhagen
parentb9781d7882e544a2d64c2e70ba9685fa870772bc (diff)
Setup git on copenhagen
Diffstat (limited to 'hosts/copenhagen')
-rw-r--r--hosts/copenhagen/home/c.nix20
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
];