Create flake.nix

This commit is contained in:
J. Fernando Sánchez
2025-08-31 19:17:09 +02:00
parent fa7041ff8b
commit 84f9bf297f
6 changed files with 273 additions and 0 deletions

13
home-manager/personal.nix Normal file
View File

@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ ];
programs.git = {
enable = true;
userName = "J. Fernando Sánchez";
userEmail = "balkian@gmail.com";
extraConfig = {
init.defaultBranch = "main";
};
};
}