Update Cursor to 1.4.2 and anonymize personal information

This commit is contained in:
thinktankmachine
2025-08-07 09:57:46 +10:00
parent 32155ec2dc
commit 3f4c4f3b26
9 changed files with 720 additions and 77 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
{ config, pkgs, lib, ... }:
{
home.username = "liam";
home.homeDirectory = "/home/liam";
home.username = "user";
home.homeDirectory = "/home/user";
home.stateVersion = "23.11";
# Let Home Manager install and manage itself
@@ -58,8 +58,8 @@
# Git configuration
programs.git = {
enable = true;
userName = "Liam";
userEmail = "liam@example.com";
userName = "Your Name";
userEmail = "your.email@example.com";
extraConfig = {
init.defaultBranch = "main";
pull.rebase = true;