From 767fe8c8f3aa5489f39d26b28c517b1469dda0c4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 9 Feb 2023 20:59:21 +0000 Subject: [PATCH] Update home.nix --- home/home.nix | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/home/home.nix b/home/home.nix index f097310..8b198f7 100644 --- a/home/home.nix +++ b/home/home.nix @@ -19,16 +19,12 @@ nixpkgs.config.allowUnfree = true; home.packages = with pkgs; [ - element-desktop fish fishPlugins.grc - foliate - fractal git git-lfs keybase-gui neofetch - watchmate vscode ]; @@ -45,17 +41,20 @@ amend = "commit -a --amend"; }; extraConfig = { - color = { - ui = "auto"; - }; - color.status = { - added = "green bold"; - changed = "yellow bold"; - untracked = "red bold"; - }; - push = { - autoSetupRemote = "true"; - }; + color = { + ui = "auto"; + }; + color.status = { + added = "green bold"; + changed = "yellow bold"; + untracked = "red bold"; + }; + push = { + autoSetupRemote = "true"; + }; + init = { + defaultBranch = "main"; + }; }; };