diff --git a/modules/cli/default.nix b/modules/cli/default.nix index 11933f9..9df4db4 100644 --- a/modules/cli/default.nix +++ b/modules/cli/default.nix @@ -12,7 +12,6 @@ entr file gcc - git htop iftop inetutils @@ -72,6 +71,14 @@ environment.etc.nixpkgs.source = pkgs.path; nix.nixPath = [ "nixpkgs=/etc/nixpkgs" ]; + programs.git = { + enable = true; + config = { + pull.ff = "only"; + init.defaultBranch = "main"; + }; + }; + programs.tmux = { enable = true; terminal = "screen-256color";