Add firefoxpwa support and additional git config.

This commit is contained in:
Nolan Darilek 2025-02-26 10:28:53 -06:00
parent 4d13abfc94
commit 5d0c9e0f74
2 changed files with 5 additions and 2 deletions

View file

@ -32,6 +32,9 @@
userName = "Nolan Darilek"; userName = "Nolan Darilek";
userEmail = "nolan@thewordnerd.info"; userEmail = "nolan@thewordnerd.info";
extraConfig = { extraConfig = {
init = {
defaultBranch = "main";
};
pull = { pull = {
rebase = true; rebase = true;
}; };

View file

@ -7,7 +7,7 @@
users.users.nolan = { users.users.nolan = {
hashedPasswordFile = config.age.secrets.nolan.path; hashedPasswordFile = config.age.secrets.nolan.path;
packages = with pkgs; [ firefoxpwa ]; packages = with pkgs; [ unstable.firefoxpwa ];
}; };
home-manager.users.nolan = { home-manager.users.nolan = {
@ -16,7 +16,7 @@
enable = true; enable = true;
package = pkgs.firefox.override { package = pkgs.firefox.override {
nativeMessagingHosts = with pkgs; [ nativeMessagingHosts = with pkgs; [
firefoxpwa unstable.firefoxpwa
gnome-browser-connector gnome-browser-connector
]; ];
}; };