feat: format

This commit is contained in:
s-prechtl 2024-09-15 11:57:16 +02:00
parent 95f31e1d7a
commit 0844945c23
15 changed files with 1111 additions and 1080 deletions

View file

@ -1,14 +1,16 @@
{ config, pkgs, ... }:
{
programs.git = {
enable = true;
delta.enable = true;
userEmail = "stefan@tague.at";
userName = "s-prechtl";
extraConfig = {
init.defaultBranch = "master";
push.autoSetupRemote = true;
};
};
config,
pkgs,
...
}: {
programs.git = {
enable = true;
delta.enable = true;
userEmail = "stefan@tague.at";
userName = "s-prechtl";
extraConfig = {
init.defaultBranch = "master";
push.autoSetupRemote = true;
};
};
}