This commit is contained in:
Dennis Schoepf 2025-01-04 23:28:06 +01:00
parent b68f8c664b
commit da35394474
5 changed files with 116 additions and 1 deletions

15
home/darwin.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home.username = "dennis";
home.homeDirectory = "/Users/dennis";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = "Dennis Schoepf";
userEmail = "me@dnsc.io";
};
}