Set git init branch to main

This commit is contained in:
2021-12-04 15:06:21 +00:00
parent c3a1bf7d5b
commit 38182e2fa4

View File

@@ -40,6 +40,7 @@
};
packages = with pkgs; [
_1password
discord
element-desktop
entr
@@ -58,6 +59,7 @@
oh-my-zsh
pavucontrol
python3
spotify
restic
rofi
starship
@@ -82,6 +84,7 @@
userEmail = "me@danielpatterson.dev";
extraConfig = {
pull.rebase = true;
init.defaultBranch = "main";
};
};
@@ -108,4 +111,16 @@
};
};
};
services = {
spotifyd = {
enable = true;
package = (pkgs.spotifyd.override { withKeyring = true; });
settings = {
global = {
useKeyring = true;
};
};
};
};
}