commit | d810dca60fe42cce456dd8c196874405506896e3 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Oct 31 00:10:07 2022 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Mon Oct 31 00:10:07 2022 +0000 |
tree | 93618c087d93dbd5f4270bad8c5c84133bfdcfc9 | |
parent | 341ba3ceacada0e1d786535eb835aeacbee861e7 [diff] |
Install git-crypt
diff --git a/modules/git.nix b/modules/git.nix index fb9ee89..57c77ad 100644 --- a/modules/git.nix +++ b/modules/git.nix
@@ -44,13 +44,15 @@ core.splitIndex = true; core.untrackedCache = true; core.fsmonitor = true; + url."ssh://git@github.com/".insteadOf = "https://github.com/"; }; }; home = { shellAliases.gg = "${pkgs.git}/bin/git gui"; - packages = [ - pkgs.git-review - pkgs.lazygit + packages = with pkgs; [ + git-review + lazygit + git-crypt ]; }; };