profiles/git: move git-crypt to home manager profiles

This commit is contained in:
Infinidoge 2021-11-08 13:11:30 -05:00
parent 63b8c31620
commit 256379f1cd

View file

@ -40,6 +40,12 @@
# delete merged branches
bdm = "!git branch --merged | grep -v '*' | xargs -n 1 git branch -d";
crypt = "!git-crypt";
};
};
home.packages = with pkgs; [
git-crypt
];
}