dots/modules/hosts/common/all-gui.nix
Gene Liverman f95cc09e13 Restructure Darwin configuration
So far, this is just based on mightymac. The other devices will be
updated soon.
2024-12-07 23:18:12 -05:00

10 lines
215 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
# nothing here right now
];
programs = {
git.aliases = {
kraken = "!gitkraken -p $(cd \"\${1:-.}\" && git rev-parse --show-toplevel)";
};
};
}