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

15
home-manager/lenny.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
jujutsu
];
programs.git = {
enable = true;
userName = "Fernando Sánchez";
userEmail = "f.sanchez@thechannelstore.tv";
extraConfig = {
init.defaultBranch = "main";
};
};
}