This commit is contained in:
2026-03-03 23:06:45 +01:00
parent e3b903d010
commit dc14b13420
45 changed files with 611 additions and 0 deletions

View File

View File

@@ -0,0 +1,13 @@
{ inputs, ... }: {
flake.homeModules.base-usr-git-all = { ... }: {
programs.git = {
enable = true;
settings.user.name = "Mohamed Chrayed";
settings.user.email = "mohamed@chrayed.de";
settings = {
init.defaultBranch = "main";
core.editor = "nano";
};
};
};
}

View File

@@ -0,0 +1,5 @@
{ ... }: {
flake.homeModules.base-usr-zsh-all = { ... }: {
home.file.".zshrc".source = ./dotfiles/zsh-config;
};
}