update git setup and add fallback to rebuild and update nextcloud to 32

This commit is contained in:
Lillian Violet 2025-10-21 15:29:04 +02:00
parent 40a3e51a89
commit 41851ee975
4 changed files with 24 additions and 8 deletions

View file

@ -239,9 +239,11 @@
home-manager.enable = true;
git = {
enable = true;
userEmail = "git@lillianviolet.dev";
userName = "Lillian-Violet";
extraConfig = {
settings = {
user = {
name = "Lillian-Violet";
email = "git@lillianviolet.dev";
};
init = {
defaultBranch = "main";
};

View file

@ -100,8 +100,22 @@
home-manager.enable = true;
git = {
enable = true;
userEmail = "git@lillianviolet.dev";
userName = "Lillian-Violet";
settings = {
user = {
name = "Lillian-Violet";
email = "git@lillianviolet.dev";
};
init = {
defaultBranch = "main";
};
};
ignores = [
"*.direnv"
"*.vscode"
".envrc"
"venv"
"venv"
];
signing.format = "ssh";
};
};