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