about summary refs log tree commit diff
path: root/nix/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-03-06 06:26:20 -0800
committerFranck Cuny <franck@fcuny.net>2024-03-06 06:26:20 -0800
commit61ed09f275fda75d4b15463b239decfa41e9a92c (patch)
treed5debf9c21eb154d7e9a1e380e52b056046ad9fa /nix/profiles
parentuse absolute path by using `$self` (diff)
downloadworld-61ed09f275fda75d4b15463b239decfa41e9a92c.tar.gz
set correct git email in the profiles
Diffstat (limited to 'nix/profiles')
-rw-r--r--nix/profiles/home-manager/git.nix1
-rw-r--r--nix/profiles/home-manager/personal.nix4
-rw-r--r--nix/profiles/home-manager/work.nix4
3 files changed, 8 insertions, 1 deletions
diff --git a/nix/profiles/home-manager/git.nix b/nix/profiles/home-manager/git.nix
index 93909de..26e7616 100644
--- a/nix/profiles/home-manager/git.nix
+++ b/nix/profiles/home-manager/git.nix
@@ -3,7 +3,6 @@
   programs.git = {
     enable = true;
     userName = "Franck Cuny";
-    userEmail = "franck@fcuny.net";
 
     aliases = {
       amend = "commit --amend";
diff --git a/nix/profiles/home-manager/personal.nix b/nix/profiles/home-manager/personal.nix
index 0d8b5a5..165edcf 100644
--- a/nix/profiles/home-manager/personal.nix
+++ b/nix/profiles/home-manager/personal.nix
@@ -10,6 +10,10 @@
     ./zsh.nix
   ];
 
+  programs.git = {
+    userEmail = "franck@fcuny.net";
+  };
+
   home.packages = with pkgs; [
     direnv
     jless
diff --git a/nix/profiles/home-manager/work.nix b/nix/profiles/home-manager/work.nix
index d9b0dab..3a913ea 100644
--- a/nix/profiles/home-manager/work.nix
+++ b/nix/profiles/home-manager/work.nix
@@ -10,6 +10,10 @@
     ./zsh.nix
   ];
 
+  programs.git = {
+    userEmail = "fcuny@roblox.com";
+  };
+
   home.packages = with pkgs; [
     # general shell utils
     direnv